Having a nice loading panel with a progress bar showing that some work is in progress is a very cool feature to any application.With this control you can show a loading panel as you are going and fetching data from the database, it will update your window with up to date progress messages.
<ctr:LoadingPanel x:Name="loadingPanel"
IsLoading="{Binding PanelLoading}"
Message="{Binding PanelMainMessage}"
SubMessage="{Binding PanelSubMessage}"
ClosePanelCommand="{Binding PanelCloseCommand}" />
Loading Panel
Please let me know if this helps you.
4 comments:
Clear and useful example. Thank you !
Thanks that made it easy for me to implement an IsLoading property in my control :)
works like a charm thanks
A great example, thank you very much!
Post a Comment