コード例 #1
0
 public static void Unsubscribe <T>(T control)
     where T : FrameworkElement
 {
     FlexibleDataContextChangedHelper <T> .Unsubscribe(control);
 }
コード例 #2
0
 public static void Subscribe <T>(T control, Action <T> callback)
     where T : FrameworkElement
 {
     FlexibleDataContextChangedHelper <T> .Subscribe(control, callback);
 }