gpt4 book ai didi

wpf - DependencyObject.AssociatedObject 始终为 null

转载 作者:行者123 更新时间:2023-12-04 06:29:57 24 4
gpt4 key购买 nike

如果我的“可见性”(在这种情况下只是一个 bool 值)属性为假,我正在尝试编写客户行为以将某些列宽设置为 0...我的问题是,当我的 on changed 事件触发它时,我的 AssociatedObject 是始终为空。

这是相关的示例代码,有人可以看到我哪里出错了。

  public static readonly DependencyProperty VisibilityProperty =
DependencyProperty.Register("Visibility", typeof(bool), typeof(HideRadGridViewColumnBehavior),
new PropertyMetadata(OnVisibilityPropertyChanged));

private static void OnVisibilityPropertyChanged(DependencyObject target, DependencyPropertyChangedEventArgs args)
{
if (((HideRadGridViewColumnBehavior)target).AssociatedObject == null)
MessageBox.Show("AssociatedObject is null");
}

谢谢你的帮助...

最佳答案

你如何附加行为?你能展示一些行为的代码吗?

在调用 Attach 之后设置 AssociatedObject或通过在 <i:Interaction.Behaviors></i:Interaction.Behaviors> 中列出行为

关于wpf - DependencyObject.AssociatedObject 始终为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5541702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com