Hi,
can I visually inherit DataGridView, as described in:
http://msdn2.microsoft.com/en-us/library/aa288147(vs.71).aspx
I have a custom form with some controls (including DataGridView) which I would like to inherit other forms from.
My aim is to have the ability to change DataGridView (DGV) properties like columns, databinding, etc. on derived form.
Even when set DGV Modifiers to Protected, the Dgv is locked on derived form and I cannot change any of it's properties. It will work with other controls, with DGV will not.
Or am I missing something
Please help.