How do I get access to the parent controls of user control in C# (winform). I am using the following code but it is not applicable on all types controls such as ListBox.
You can get the Parent of a control via
myControl.Parent
See MSDN: Control.Parent