Hey there,
I am using a WinGrid inside of a user control. The Size of the grid has been set to fill its parent container inside the user control, and I've set the anchor mode to "Top, Left, Right".
Now when I databind a datasource to the Grid, depending on the source, there will be a variable number of columns displayed. What happens when there aren't very many columns is that the Grid doesn't fill its parent, and looks a little "off".
Is there a way (for example in the InitializeLayout event) to get the last grid column to expand to fill the unused space inside the Grid? I couldn't seem to find a way.
Set the property below with the code I provided, or set the property value in designer view.
ultraGrid1.DisplayLayout.AutoFitStyle = AutoFitStyle.ExtendLastColumn;
Great! Thank you, I knew there had to be a way.