I have a DataGridView containing two columns. What I want columns to behave is, column A has a minimum width and nothing else. Column B should take up whatever space left. Users can resize column A's width freely and column B always takes up whatever space left.
I was thinking to set column B's auto size mode to fill but this doesn't allow users to resize column A's width. How can I set the two columns' resize mode to achieve the above behaviour? Thanks.