By tag: INotifyPropertyChanged
0
kicks
notifypropertyweaver – {get;set;notify} in Silverlight
So, what does notifypropertyweaver do? If your class implements INotifyPropertyChanged then you just need to have auto-implemented properties and notifypropertyweaver automagically ensures that on change of value of a property, PropertyChanged event is fired.
0
kicks
ItemsSource tips & tricks
Describe problem.
When we wish to implement the mechanism Drag&Drop of Children for our control in WPF, particularly that our control contains children in its logical tree (in other case attached and inherit properties work incorrect sometimes). Let that control template contains some other c...