我创建一个依赖属性来关闭视图模型中的视图,
依赖属性:
public static class WindowBehaviors
{
public static readonly DependencyProperty IsOpenProperty =
DependencyProperty.RegisterAttached("IsOpen"
, typeof(bool),
typeof(WindowBehaviors),
new UIPropertyMetadata(false, IsOpenChanged));
private static void IsOpenChanged(DependencyObject obj,DependencyPropertyChangedEventArgs args)
{
Window window = Window.GetWindow(obj);
if (window != null && ((bool)args.NewValue))
window.Close();
}
public static bool GetIsOpen(Window target)
{
return (bool)target.GetValue(IsOpenProperty);
}
public static void SetIsOpen(Window target, bool value)
{
target.SetValue(IsOpenProperty, value);
}
}
并像这样在我的 xaml 中使用它:
<window
...
Command:WindowBehaviors.IsOpen="True">
它工作得很好,但是当我想将它绑定到 viewModel 中的属性时,它不起作用,我猜,它不起作用,因为我稍后在 xaml 中定义了资源。
在xml中:
<Window.Resources>
<VVM:myVieModel x:Key="myVieModel"/>
</Window.Resources>
我不知道我该怎么办,我应该把这个放在哪里:
Command:WindowBehaviors.IsOpen="{binding Isopen}"