I have a DataGridView control docked in Panel1 of a SplitContainer (docked into the form) which has Panel2 Fixed.
I'm trying to preview User resizing of the DataGridView Control. The two Events raised when the DataGridView border is dragged are Resize and ClientSizeChanged.
There isn't an e.Handled property or similar that I can cancel out the action, there doesn't seem to be any Property associated with the Control EventArgs that stops User resizing the DataGridView Control.
I only want to allow resizing of both controls when the Form is resized.
Any ideas?