Hi ,
I am binding list to XamlWeb Grid . I have to set with of 1 st and 2st Column and other should resize as per grid size equally (auto/*) .
How can I do that at code behind .
Thanks ,
Nandkishor.
Hi Nandkishor,
I believe you are referring to star columns.
To create one in the code behind, use the following:
TextColumn tc = new TextColumn();
tc.Width = new ColumnWidth(1, true);
Thanks Steve ,
It work nice on loading , but how can i update width of columns on resize ?
AgGridCommonHeader.Columns[0].ColumnLayout.ColumnWidth =
This Doesn't work .
- Nandkishor .