我正在处理自定义WPF行为(来自System.Windows.Interactivity的行为),显示了几个依赖项属性,其中一个是字符串。该行为还会覆盖OnAttached
以获取对其AssociatedObject
UI控件的引用。
当附加属性与viewModel绑定数据并稍后更改(并通知)时,一切似乎都很好: OnAttached 已被触发"在开始时#34; ,之后 PropertyChangedCallback 被触发。
我看到的问题是当属性没有绑定时,但设置为"静态" XAML中的值。在这种情况下, PropertyChangedCallback 在 OnAttached 之前被触发,此时行为尚未知道其关联的UI控件,并且基本上无法对该属性更改做出任何反应。
我想我在这种情况下缺少应该如何处理的事情。任何理解这一点的帮助表示赞赏。 TA
修改
在这里显示一些代码,如果在这种情况下可能有用:
public class SomeUIControlBehaviour : Behavior<SomeUIControl>
{
protected override void OnAttached()
{
base.OnAttached();
_attachedUIControl = this.AssociatedObject;
}
protected override void OnDetaching()
{
base.OnDetaching();
_attachedUIControl = null;
}
private SomeUIControl _attachedUIControl;
private void MessageChanged()
{
if (_attachedUIControl != null)
{
// do something on it
}
else
{
// bummer!
}
}
// Text property + dependency property
public string Message
{
get { return (string)GetValue(MessageProperty); }
set { SetValue(MessageProperty, value); }
}
private static string _defaultMessage = String.Empty;
// Using a DependencyProperty as the backing store for Message. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MessageProperty =
DependencyProperty.Register("Message",
typeof(string), typeof(SomeUIControlBehaviour),
new PropertyMetadata(_defaultMessage, MessagePropertyChanged));
private static void MessagePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs evt)
{
//Debug.WriteLine("MessagePropertyChanged, on " + sender.GetType().Name + ", to value " + evt.NewValue);
SomeUIControlBehaviour behaviour = sender as SomeUIControlBehaviour;
if (behaviour == null)
{
Debug.Fail("Message property should be used only with SomeUIControlBehaviour");
return;
}
behaviour.MessageChanged();
}
}
答案 0 :(得分:0)
根据评论,一个简单的答案可能是:
当行为被附加时,只需检查属性是否已经有一个值(可能与默认值不同),并且在这种情况下执行PropertyChangedCallback
应该执行的操作。