Currently, in order to specify a control's position within a grid, one must use the Row and Column static methods of the Grid class, EG:
Grid.Row[applyButton].Value = 1;
Grid.Column[applyButton].Value = 3;
Since Row and Column are essential values when using grids, would it be possible to add an overload to Grid.Children.Add to provide the Row and Column, EG:
grid.Children.Add(applyButton, 1, 3);
Currently, in order to specify a control's position within a grid, one must use the
RowandColumnstatic methods of the Grid class, EG:Since Row and Column are essential values when using grids, would it be possible to add an overload to
Grid.Children.Addto provide the Row and Column, EG: