我正在使用 WPF 开发自定义用户控件。我已经注册了 DependancyProperty,但我想让它仅为 OneWay 绑定。有可能做到吗?这是我所拥有的:
public static readonly DependencyProperty CustomPrProperty =
DependencyProperty.Register(
"CustomPr",
typeof(string),
typeof(CustomView),
new FrameworkPropertyMetadata(string.Empty, OnDependencyPropertyChanged));
这样,当有人使用用户控件时,他可以将其设为OneWay、OneWayToSource 和TwoWay。我怎样才能使其只读属性?
忽然笑
相关分类