예제 #1
0
 public static Grid.Insets SetBottom(this Grid.Insets inset, float bottom) =>
 new Grid.Insets(inset.Left, inset.Top, inset.Right, bottom);
예제 #2
0
 public static Grid.Insets SetLeft(this Grid.Insets inset, float left) =>
 new Grid.Insets(left, inset.Top, inset.Right, inset.Bottom);
예제 #3
0
 public static Grid.Insets SetRight(this Grid.Insets inset, float right) =>
 new Grid.Insets(inset.Left, inset.Top, right, inset.Bottom);
예제 #4
0
 public static Grid.Insets SetTop(this Grid.Insets inset, float top) =>
 new Grid.Insets(inset.Left, top, inset.Right, inset.Bottom);