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