예제 #1
0
        private static void OnHubAttach(DependencyObject source, DependencyPropertyChangedEventArgs prop)
        {
            DefaultButtonHub hub = prop.NewValue as DefaultButtonHub;

            hub.Attach(source);
        }
예제 #2
0
 public static void SetDefaultHub(DependencyObject obj, DefaultButtonHub value)
 {
     obj.SetValue(DefaultHubProperty, value);
 }