Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
824 views
in Technique[技术] by (71.8m points)

wpf - Non-static dependency properties

Is there any reason why I could (or should) not declare dependency properties as non-static?

I need to make an interface with two-way bindable properties. INotifyPropertyChanged seems a little bit cumbersome on the receiving end as it relies on string identifiers.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Is there any reason why I could (or should) not declare dependency properties as non-static?

Yes.

The Dependency Property mechanism in WPF uses a storage mechanism specified per type, not per instance. The design of DPs relies on them being defined statically, and not per instance. They will not work properly if you define them on an instance.

This is partly done to allow inheritance of properties, but also allows you to specify a LOT of properties on an object without using a lot of memory per instance.

If you want to make an interface with two-way bindable properties, typically you'd want to use INotifyPropertyChanged for your class, and the dependency properties on the user interface elements to handle the bindings. INotifyPropertyChanged is the proper mechanism for this. If the major complaint is the string identifiers, you can work around them using expression trees.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...