Todavía estoy teniendo comportamientos similares en general, y no entiendo cómo escribir una prueba de unidad para uno.unidad prueba un comportamiento adjunto wpf
He pegado un código debajo del marco Cinch de Sacha Barber que permite que una ventana se cierre mediante el comportamiento adjunto. ¿Puede alguien mostrarme un ejemplo de prueba de unidad?
Gracias!
Berryl
#region Close
/// <summary>Dependency property which holds the ICommand for the Close event</summary>
public static readonly DependencyProperty CloseProperty =
DependencyProperty.RegisterAttached("Close",
typeof(ICommand), typeof(Lifetime),
new UIPropertyMetadata(null, OnCloseEventInfoChanged));
/// <summary>Attached Property getter to retrieve the CloseProperty ICommand</summary>
public static ICommand GetClose(DependencyObject source)
{
return (ICommand)source.GetValue(CloseProperty);
}
/// <summary>Attached Property setter to change the CloseProperty ICommand</summary>
public static void SetClose(DependencyObject source, ICommand command)
{
source.SetValue(CloseProperty, command);
}
/// <summary>This is the property changed handler for the Close property.</summary>
private static void OnCloseEventInfoChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
var win = sender as Window;
if (win == null) return;
win.Closing -= OnWindowClosing;
win.Closed -= OnWindowClosed;
if (e.NewValue == null) return;
win.Closing += OnWindowClosing;
win.Closed += OnWindowClosed;
}
/// <summary>
/// This method is invoked when the Window.Closing event is raised.
/// It checks with the ICommand.CanExecute handler
/// and cancels the event if the handler returns false.
/// </summary>
private static void OnWindowClosing(object sender, CancelEventArgs e)
{
var dpo = (DependencyObject)sender;
var ic = GetClose(dpo);
if (ic == null) return;
e.Cancel = !ic.CanExecute(GetCommandParameter(dpo));
}
/// <summary>
/// This method is invoked when the Window.Closed event is raised.
/// It executes the ICommand.Execute handler.
/// </summary>
static void OnWindowClosed(object sender, EventArgs e)
{
var dpo = (DependencyObject)sender;
var ic = GetClose(dpo);
if (ic == null) return;
ic.Execute(GetCommandParameter(dpo));
}
#endregion
cinch va un paso más allá con el RelayCommand al hornear su llamada prueba en una propiedad bool CommandSucceeded. Tu publicación es útil para forzar que SetClose siga siendo un setter de propiedades al final del día, ¡incluso si no se parece a los más simples establecedores de propiedades normales de C#! Esa es una de las cosas que no estaba viendo y aún no es intuitiva para mí sobre el comportamiento DP/adjunto. Cheers – Berryl
Sí. Cuando se compila, se llaman esos métodos Get/Set estáticos. Lo mismo con DP: omite el contenedor de propiedades y llama directamente a 'SetValue' /' GetValue' en 'DependencyObject'. Es bueno saber de eso en Cinch. No es uno que haya leído aún. –