Feedback

C# - MVVM Close Dialog

Veröffentlicht von am 11/4/2015
(0 Bewertungen)
Mit diesem attached property kann ein modaler Dialog geschlossen werden und gleichzeitig wird das DialogResult entsprechend gefüllt. Dabei wird kein Code im CodeBehind der View benötigt.

Die Verwendung im XAML der View sieht dann folgendermaßen aus:

attachedProperties:WindowExtensions.WindowDialogResult="{Binding Result, UpdateSourceTrigger=PropertyChanged}"


Das Result-Objekt, an das hier gebunden wird, ist ein bool-property welches im setter OnPropertyChanged feuert.
using System.Windows;

namespace NameSpace
{
    public class WindowExtensions
    {
        public static readonly DependencyProperty WindowDialogResultProperty = DependencyProperty.RegisterAttached(
            "WindowDialogResult", typeof (bool?), typeof (WindowExtensions),
            new PropertyMetadata(null, OnWindowDialogResultChanged));

        private static void OnWindowDialogResultChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Window window = d as Window;
            if (window == null)
                return;

            if (e.OldValue != null && e.NewValue != null )
            {
                window.DialogResult = e.NewValue as bool?;
            }
        }

        public static void SetWindowDialogResult(DependencyObject element, bool? value)
        {
            element.SetValue(WindowDialogResultProperty, value);
        }

        public static bool? GetWindowDialogResult(DependencyObject element)
        {
            return (bool?) element.GetValue(WindowDialogResultProperty);
        }
    }
}
Abgelegt unter WPF, MVVM, C#, XAML.

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!