Ejemplo n.º 1
0
 public static void SetLeftEnabled(UIComponentVerticalSplitContainer source, bool value)
 {
     source.SetValue(LeftEnabledProperty, value);
 }
Ejemplo n.º 2
0
 public static void SetRightComponent(UIComponentVerticalSplitContainer source, UIComponentConfiguration value)
 {
     source.SetValue(RightComponentProperty, value);
 }
Ejemplo n.º 3
0
 public static bool GetLeftEnabled(UIComponentVerticalSplitContainer source)
 {
     return((bool)source.GetValue(LeftEnabledProperty));
 }
Ejemplo n.º 4
0
 public static UIComponentConfiguration GetRightComponent(UIComponentVerticalSplitContainer source)
 {
     return((UIComponentConfiguration)source.GetValue(RightComponentProperty));
 }
Ejemplo n.º 5
0
 public static void SetCollapseRight(UIComponentVerticalSplitContainer source, bool value)
 {
     source.SetValue(CollapseRightProperty, value);
 }
Ejemplo n.º 6
0
 public static bool GetCollapseRight(UIComponentVerticalSplitContainer source)
 {
     return((bool)source.GetValue(CollapseRightProperty));
 }
Ejemplo n.º 7
0
 public static void SetSplitterDirection(UIComponentVerticalSplitContainer source, string value)
 {
     source.SetValue(SplitterDirectionProperty, value);
 }
Ejemplo n.º 8
0
 public static string GetSplitterDirection(UIComponentVerticalSplitContainer source)
 {
     return((string)source.GetValue(SplitterDirectionProperty));
 }