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();
そして、私の1つDependencyPropertiesもaUIElementであり、すでにウィンドウエラーにバインドされているため、その要素はすでに使用されています。だから私も新しい要素を作成することはできません。
何が問題ですか?
わかりました。私が見つけた唯一の解決策は、DependencyProperty自分の通常のプロパティを削除して作成し、ObservateCollection<UIElement>を使用することINotifyPropertyChangedです。
DependencyProperty
ObservateCollection<UIElement>
INotifyPropertyChanged