Removing Bindings in Silverlight

不羁的心 提交于 2020-01-16 03:21:41

问题


I am looking at this,

Clear Binding in Silverlight (Remove Data Binding from SetBinding)

But to clear bindings you have to specify a dependency property.

Is there a way to generically find all the bindings on a DependencyObject and clear them?

Thanks.


回答1:


How about iterating over all the static dependency properties (using Reflection) of that control's type and resetting bindings on them?



来源:https://stackoverflow.com/questions/4405288/removing-bindings-in-silverlight

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!