How can I stretch a user control?
I have a userControl it’s highlighted in blue. Is’s a TabControl.
How do I strech it to fill the entire parent.

And how to make ComboBox stretched if GroupBox changes
Update
Please provide the code with this structure:
– Window -> panel -> MyuserContorl
– MyUserControl -> panel -> tabControl
To all stretched
You can anchor your user control by setting the
Anchor.Here’s a useful article
Edit:
In your
user controlYou may also need to
DockorAnchorthe panel inside youruser control.In your window
Again you may need to
DockorAnchorthe panel inside your form.