User Control Parent Form Problem

allimbued

Member
Joined
Feb 23, 2012
Messages
11
Programming Experience
Beginner
Hi, I am displaying a usercontrol on my parent form and it displays like this:
usercontrol.png
Though the events such as button click on the usercontrol are fired appropriately, the user control fields are displayed as given in the picture. Please help.
 
Those controls are disabled, so you have either set their Enabled property to False or else done that for some control in their hierarchy, e.g. the UserControl itself or the container that it's in.
 
Back
Top