依赖属性获取和设置

时间:2018-11-22 19:08:29

标签: c# wpf dependency-properties

您好,我每个人都具有此依赖项属性如何获取值在XAML中设置值

     public static bool GetSuppressLinks(DependencyObject obj)
    {
        return (bool)obj.GetValue(SuppressLinksProperty);
    }

    public static void SetSuppressLinks(DependencyObject obj, bool value)
    {
        obj.SetValue(SuppressLinksProperty, value);
    }

    public static readonly DependencyProperty SuppressLinksProperty =
        DependencyProperty.RegisterAttached("SuppressLinks",
        typeof(bool),
        typeof(LinkTextBox),
        new PropertyMetadata(false));

所以当我调用Get方法时,我应该为它传递什么:/这个对象是什么 非常感谢。

0 个答案:

没有答案