I created a UserControl with Button, TextBox and DataGridView. I install modifiers of all controls publicly.
Now, if I inherit this UserControl, I can change the TextBox and Button through Designer (moving, changing properties) as I expected. But for DataGridView, all properties are disabled.
Is there a reason why I cannot change the DataGridView through the constructor in the inherited UserControl?
source
share