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:23 UTC
Read the original article Hit count: 270

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about notifications