Guest User

Untitled

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Grid grid = new Grid();
  2. grid.ColumnDefinitions.Add(new ColumnDefinition { Width = GridLength.Auto });
  3. grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(20) });
  4. grid.Height = 50;
  5. Border bd = new Border();
  6. bd.Style = borderStyle;
  7. bd.Child = grid;
Add Comment
Please, Sign In to add comment