c# user notification while waiting
- by user315445
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