您好,我每个人都具有此依赖项属性如何获取值在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方法时,我应该为它传递什么:/这个对象是什么 非常感谢。