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.
inNotifyOnSourceUpdateのコード ビハインドでプロパティを設定することは可能ですか? コードビハインドでこれを行う必要があります。使えません: MSDNImageWPF
NotifyOnSourceUpdate
Image
WPF
Bindingまたはコードで が既に設定されている場合Xaml、Binding プロパティを変更することはできませんが、新しいバインディングを作成して、Image
Binding
Xaml
Binding binding = new Binding("MyImageProperty") { NotifyOnSourceUpdated = true }; image.SetBinding(Image.SourceProperty, binding);