In a WPF application I need to show user that some process is in progress and one should wait. I don’t need to show particular percentage of completeness of this process, moreover, I don’t exactly know it.
What is the way to do it? Some special settings of the progress bar or maybe there are other common ways to show animation of this kind?
Use a ProgressBar and set IsIndeterminate to true. This is the standard way of signaling that progress is occurring, but that it cannot be measured or even estimated.