Hello. I am creating a grid like this, i have a grid with two columns i want one on the right side to be 60 pixels no percentage and i want the column on the left to be maximum it can be minus the 60 pixel column on the right how do I do this thanks.
// Create the Grid
DynamicGrid.Width = this.Width;
DynamicGrid.HorizontalAlignment = HorizontalAlignment.Left;
DynamicGrid.VerticalAlignment = VerticalAlignment.Top;
DynamicGrid.ShowGridLines = true;
DynamicGrid.Background = new SolidColorBrush(Colors.LightSteelBlue);
// Create Columns
ColumnDefinition gridCol1 = new ColumnDefinition();
ColumnDefinition gridCol2 = new ColumnDefinition();
gridCol1.Width = new GridLength(100, GridUnitType.Star);
gridCol2.Width = new GridLength(60);

