c# user notification while waiting
Posted
by user315445
on Stack Overflow
See other posts from Stack Overflow
or by user315445
Published on 2010-04-14T07:10:40Z
Indexed on
2010/04/14
7:13 UTC
Read the original article
Hit count: 146
Hi, I am writing a simple win forms app in C#. There is a method call in my method which loads files but is taking a while to respond. Below is the method call
Directory.GetFiles(selectedFolder, "*.xml", SearchOption.AllDirectories);
I want to notify this to users. Is there a way to show them that file loading is in progress? I want a simplest way. I suppose Splash screen is too costly for my app.
Thanks, Sid
© Stack Overflow or respective owner