Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试克隆UIElement. 一切似乎都很好,但我DependencyProperties也复制到一个新元素,如下所示:
UIElement
DependencyProperties
var newEl = new MyElement();
并且因为我DependencyProperties的一个也是一个UIElement并且它已经绑定到窗口错误发生该元素已经在使用中。所以我什至无法创建新元素。
问题是什么?
好的,我发现的唯一解决方案是删除并为我的和使用DependencyProperty创建一个正常的属性。ObservateCollection<UIElement>INotifyPropertyChanged
DependencyProperty
ObservateCollection<UIElement>
INotifyPropertyChanged