How do I invoke a load bar from within a view model? The cool one with the little dots that float by. I can't seem to find the right Bing phrase to search for it.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
here you go, this example is what you need. http://msdn.microsoft.com/en-us/library/windowsphone/develop/gg442303(v=vs.105).aspx
Here is a quick overview about how it works : http://xamlgeek.net/2012/10/30/using-the-progressindicator-in-the-systemtray-in-windows-phone/
You can get it more generic.
What you are looking for is an Inderterminate Progress Bar.
You can either call the inbuilt Progress bar from the System Tray[3] or define a custom one of yours in XAML from the toolbox.
For the dotted effect, all you need to do is set the Progress Bar's Indeterminate property to True else it will show a progress bar that shows the percentage completion of process.
Here are some useful articles for your reference:
Try this.
XAML
C#