public static void SetComponent(UIComponentPanel source, UIComponentConfiguration value)
 {
     source.SetValue(ComponentProperty, value);
 }
 public static void SetIsInDesignMode(UIComponentPanel source, bool value)
 {
     source.SetValue(IsInDesignModeProperty, value);
 }
 public static UIComponentConfiguration GetComponent(UIComponentPanel source)
 {
     return((UIComponentConfiguration)source.GetValue(ComponentProperty));
 }
 public static bool GetIsInDesignMode(UIComponentPanel source)
 {
     return((bool)source.GetValue(IsInDesignModeProperty));
 }