Let a user control A
containing a button bA
and a user control AChild
inheriting from A
and containing a TableLayoutPanel
.
If I want the inherited button bA
, within ChildA
, not to be where it was placed within A
, but instead be placed in ChildA
's TableLayoutPanel
, how can I do ?
I did change bA
's visibility from private
to protected
, and it is not Locked
. But still, when I moved the inherited button bA
within ChildA
, it can be moved as expected, but it can NOT be moved inside ChildA
's TableLayoutPanel
. It's like I could move bA
around, but not change its parent within ChildA
Why ? Any workaround ? Thank you.