我尝试在.NET 3.5中使用Attached Property
到我的一个控件。这个想法是控制需要在特定操作之后集中。我想将此属性绑定到ViewModel上的值,以便可以根据需要更改属性(即,当我更改ViewModel上的值时,它将更新附加属性中的值)。
附加财产
class FocusProperty : DependencyObject
{
public static DependencyProperty IsFocusedProperty = DependencyProperty.RegisterAttached ("IsFocused",
typeof (bool),
typeof (FocusProperty),
new UIPropertyMetadata (false, OnIsFocusedChanged));
public static bool GetIsFocused (DependencyObject DObject)
{
return (bool)DObject.GetValue (IsFocusedProperty);
}
public static void SetIsFocused (DependencyObject DObject, bool Value)
{
DObject.SetValue (IsFocusedProperty, Value);
}
public static void OnIsFocusedChanged (DependencyObject DObject, DependencyPropertyChangedEventArgs Args)
{
UIElement Control = DObject as UIElement;
bool NewValue = (bool)Args.NewValue;
bool OldValue = (bool)Args.OldValue;
// REMOVE TODO
System.Windows.MessageBox.Show ("OI");
if (NewValue && !OldValue && !Control.IsFocused)
{
Control.Focus ();
}
}
}
在XAML中,这是它的使用方式:
a:FocusProperty.IsFocused="{Binding Path=IsListFocused}
IsListFocused
是ViewModel上的bool属性:
public bool IsListFocused
{
get { return isListFocused_; }
set
{
isListFocused_ = value;
OnPropertyChanged ("IsFocused");
}
}
它不起作用 - 当更改IsListFocused时,MessageBox不会按预期显示。
我一直在寻找有关该主题的帮助,但似乎附加属性不是很多用的东西,因此没有太大的支持方式。
我的问题是:为什么上述代码段无法正常工作?
答案 0 :(得分:2)
在视图模型的IsListFocused
属性设置器中,替换
OnPropertyChanged("IsFocused");
通过
OnPropertyChanged("IsListFocused");