Can I set the Top and Left properties based on the form from the user-control, so I don’t need to go to each instances of the control to set it?
ucBar.Left = (Me.ClientSize.Width - ucBar.Width) - 12
ucBar.Top = 12
I want the uc to be on the upper right side of the form that’s how I set it on the form. But I have this control on too many forms’s to open each one and add this tow lines.
In order to have that happen when you put the UC on a Form:
And: