Showing posts with label WPF Loading Panel. Show all posts
Showing posts with label WPF Loading Panel. Show all posts

Friday, June 28, 2013

MahApps Flyout Loading Panel

I have started developing a new application for work with the MahApps windows framework and I have to say it is amazing.

I love it because the whole window is restyle to look like a Windows 8 metro application and the flyout panel is a very nice feature to have in any application.

In this sample I would like to show you one of the power of this framework, the flyout control.

Loading Flyout Panel

Please let me know if you like it.

Wednesday, July 20, 2011

WPF Loading Panel

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.