加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 程序设计 > 正文

依赖属性 dependency property WPF,为什么要用DDP?

发布时间:2020-05-22 15:29:08 所属栏目:程序设计 来源:互联网
导读:使用依赖属性的原因:linkhttp://stackoverflow.com/questions/1723756/why-dependency-properties This helped me understand the reasoning: The main difference is, that the value of a normal .NET property isread di

使用依赖属性的原因:linkhttp://stackoverflow.com/questions/1723756/why-dependency-properties

This helped me understand the reasoning:

The main difference is,that the value of a normal .NET property isread directlyfrom aprivate member in your class,whereas the value of a DependencyProperty isresolved dynamicallywhen calling theGetValue() method that is inherited from DependencyObject.

DPP是动态读取进来的,而不是像原始Property那样,实际是存储在一个private的成员里。

When you set a value of a dependency property it is not stored in a field of your object,but in adictionary of keys and valuesprovided by the base class DependencyObject. The key of an entry is the name of the property and the value is the value you want to set.

DDP这货是存在DependencyObject这个基类里的。

The advantages of dependency properties are as follows:

好处如下

Reduced memory footprint(减少存储,只存改变的)

It's a huge dissipation to store a field for each property when you think that over 90% of the properties of a UI control typically stay at its initial values. Dependency properties solve these problems by only store modified properties in the instance. The default values are stored once within the dependency property.

Value inheritance(值继承)

When you access a dependency property the value is resolved by using a value resolution strategy. If no local value is set,the dependency property navigates up the logical tree until it finds a value. When you set the FontSize on the root element it applies to all textblocks below except you override the value.

Change notification(改变时候有提醒事件,Notification)

Dependency properties have a built-in change notification mechanism. By registering a callback in the property metadata you get notified,when the value of the property has been changed. This is also used by the databinding.

From:WPF Tutorials.

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读