MVVM Wait Cursor how to set the.wait cursor during invocation of a command? MVVM Wait Cursor how to set the.wait cursor during invocation of a command? wpf wpf

MVVM Wait Cursor how to set the.wait cursor during invocation of a command?


I am using it successfully in my application:

/// <summary>///   Contains helper methods for UI, so far just one for showing a waitcursor/// </summary>public static class UIServices{    /// <summary>    ///   A value indicating whether the UI is currently busy    /// </summary>    private static bool IsBusy;    /// <summary>    /// Sets the busystate as busy.    /// </summary>    public static void SetBusyState()    {        SetBusyState(true);    }    /// <summary>    /// Sets the busystate to busy or not busy.    /// </summary>    /// <param name="busy">if set to <c>true</c> the application is now busy.</param>    private static void SetBusyState(bool busy)    {        if (busy != IsBusy)        {            IsBusy = busy;            Mouse.OverrideCursor = busy ? Cursors.Wait : null;            if (IsBusy)            {                new DispatcherTimer(TimeSpan.FromSeconds(0), DispatcherPriority.ApplicationIdle, dispatcherTimer_Tick, System.Windows.Application.Current.Dispatcher);            }        }    }    /// <summary>    /// Handles the Tick event of the dispatcherTimer control.    /// </summary>    /// <param name="sender">The source of the event.</param>    /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>    private static void dispatcherTimer_Tick(object sender, EventArgs e)    {        var dispatcherTimer = sender as DispatcherTimer;        if (dispatcherTimer != null)        {            SetBusyState(false);            dispatcherTimer.Stop();        }    }}

This has been taken from here. Courtsey huttelihut.

You need to call the SetBusyState method every time you think you are going to perform any time consuming operation. e.g.

...UIServices.SetBusyState();DoProcessing();...

This will automatically change your cursor to wait cursor when the application is busy and back to normal when idle.


A very simple method is to simply bind to the 'Cursor' property of the window (or any other control). For example:

XAML:

<Window    x:Class="Example.MainWindow"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     Cursor="{Binding Cursor}" />

ViewModel Cursor Property (Using Apex.MVVM):

    private NotifyingProperty cursor = new NotifyingProperty("Cursor", typeof(System.Windows.Input.Cursor), System.Windows.Input.Cursors.Arrow);    public System.Windows.Input.Cursor Cursor    {        get { return (System.Windows.Input.Cursor)GetValue(cursor); }        set { SetValue(cursor, value); }    }

Then simply change the cursor in your view when needed...

    public void DoSomethingLongCommand()    {        Cursor = System.Windows.Input.Cursors.Wait;        ... some long process ...        Cursor = System.Windows.Input.Cursors.Arrow;    }


You want to have a bool property in viewmodel.

    private bool _IsBusy;    public bool IsBusy     {        get { return _IsBusy; }        set         {            _IsBusy = value;            NotifyPropertyChanged("IsBusy");        }    }

Now you want to set the window style to bind to it.

<Window.Style>    <Style TargetType="Window">        <Setter Property="ForceCursor" Value="True"/>        <Style.Triggers>            <DataTrigger Binding="{Binding IsBusy}" Value="True">                <Setter Property="Cursor" Value="Wait"/>            </DataTrigger>        </Style.Triggers>    </Style></Window.Style>

Now whenever a command is being executed and your view model is is busy, it would just set the IsBusy flag and reset it when done. The Window will automatically display the wait cursor and restore the original cursor when done.

You can write the command handler function in view model something like this:

    private void MyCommandExectute(object obj) // this responds to Button execute    {        try        {            IsBusy = true;            CallTheFunctionThatTakesLongTime_Here();        }        finally        {            IsBusy = false;        }    }