Window.Close() from XAML

It’s been a long time since I last posted. Since then I have been working on my first WPF contract. I have definately drank the cool aid, I love WPF (when MVVM is being used anyway).

One thing I haven’t been able to find any info on is how to close a window or dialog from XAML. I tried and tried and then gave up. Until now!

Having discovered the power of Attached Behaviours, I decided to write one that would close a window. All you need do then is create a data trigger that watches a CloseSignal on the ViewModel and sets the Close property to true.

public static class WindowCloseBehaviour
{
public static void SetClose(DependencyObject target, bool value)
{
target.SetValue(CloseProperty, value);
}
public static readonly DependencyProperty CloseProperty =
DependencyProperty.RegisterAttached(
"Close",
typeof(bool),
typeof(WindowCloseBehaviour),
new UIPropertyMetadata(false, OnClose));
private static void OnClose(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
if (e.NewValue is bool && ((bool)e.NewValue))
{
Window window = GetWindow(sender);
if (window != null)
window.Close();
}
}
private static Window GetWindow(DependencyObject sender)
{
Window window = null;
if (sender is Window)
window = (Window)sender;
if (window == null)
window = Window.GetWindow(sender);
return window;
}
}

and then in your XAML

<Style.Triggers>
   <DataTrigger Binding="{Binding CloseSignal}" Value="true">
        <Setter Property="Behaviours:WindowCloseBehaviour.Close" Value="true" />
   </DataTrigger>
</Style>

22 Replies to “Window.Close() from XAML”

  1. Thanks, I got it working with a bit of googling.

    In VS2008 the compiler picked up a few errors with the code…

    Namely, I had to change the GetClose method to return a bool and not be a void.

    Also, for those that are noobs to WPF like me

    is an example of how to set the Attached behaviour.

    Thanks a ton though, I think this is the most elegant way I have found so far!

    1. Hey Mark,

      Can you please share of a complete sample what all changes you made to this. I need it badly.
      Thanks in advance

  2. Me = newb.

    I am getting an error “Cannot convert the value in attribute ‘Property’ to object of type ‘System.Windows.DependencyProperty’.” and am uncertain how to resolve it. Any guidance is appreciated.

  3. I struggled with this code. the only way I could make it work is by removing ‘readonly’ from CloseProperty. Hope it helps. No other changes were necessary.

  4. I can’t post code… to call your triggers proceed like this :
    – put the style.triggers code in Style x:key=”StyleMainGrid” for example
    -the grid balise : Grid Style=”{StaticRessource StyleMainGrid}”

Leave a reply to Mark Cancel reply