依赖属性的概念大家应该都很清楚,那么什么是只读依赖属性呢?
public class OwnerClass : DependencyObject // or DependencyObject inheritor
{
private static readonly DependencyPropertyKey FooPropertyKey
= DependencyProperty.RegisterReadOnly("Foo", typeof(int), typeof(OwnerClass),
new FrameworkPropertyMetadata(default(int));
public static readonly DependencyProperty FooProperty
= FooPropertyKey.DependencyProperty;
public int Foo
{
get { return (int)GetValue(FooProperty); }
private set { SetValue(FooPropertyKey, value); }
}
//your other code here ...
}
需要注意的重点是:
RegisterReadOnly
,且返回值类型是DependencyPropertyKey
DependencyProperty
字段FooProperty
,(注意名称符合依赖属性的规范),其返回值是FooPropertyKey.DependencyProperty
,set
的访问权限,且SetValue
的对象是指定的DependencyPropertyKey
.net - How do You Create a Read-Only Dependency Property? - Stack Overflow
本文会经常更新,请阅读原文: https://xinyuehtx.github.io/post/WPF%E7%9A%84%E5%8F%AA%E8%AF%BB%E4%BE%9D%E8%B5%96%E5%B1%9E%E6%80%A7.html ,以避免陈旧错误知识的误导,同时有更好的阅读体验。
本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名黄腾霄(包含链接: https://xinyuehtx.github.io ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系 。