I have a form with labels and other components, picture boxes, panels, etc.. When I am doing Form.enabled = false;
(because I have another form on top of it) the labels are not showing even though the visibility of the components is set to true; Any ideas?
I didn't include code because I'm not sure what to include!
Thanks for any help!
Edit: After what Joel Etherton said, I tried using this event:
private void label1_VisibleChanged(object sender, EventArgs e)
{
label1.Visible = true;
}
This is giving me a StackOverflowException
.. maybe this is infinitely trying to override the parent control visibility.. What can I do please?