Example #1
0
 public static void SetColumnSpan(IBetterAttachedPropertyStore dp, int value)
 {
     dp.SetProperty(ColumnSpanProperty, value);
 }
Example #2
0
 public static void SetRow(IBetterAttachedPropertyStore dp, int value)
 {
     dp.SetProperty(RowProperty, value);
 }
Example #3
0
 public static int GetColumnSpan(IBetterAttachedPropertyStore dp) => dp.GetValue <int>(ColumnSpanProperty);
Example #4
0
 public static int GetRow(IBetterAttachedPropertyStore dp) => dp.GetValue <int>(RowProperty);