在后面的代码中为Image设置NotifyOnSourceUpdate

时间:2013-01-10 22:32:54

标签: c# wpf binding

是否可以在NotifyOnSourceUpdateImage的代码中设置WPF属性?我需要在后面的代码中执行此操作。我无法使用:MSDN

1 个答案:

答案 0 :(得分:1)

如果已在Binding或代码中设置了Xaml,则无法更改“绑定”属性,但您只需创建并为Image

分配新的绑定
 Binding binding = new Binding("MyImageProperty") { NotifyOnSourceUpdated = true };
 image.SetBinding(Image.SourceProperty, binding);