If you set the Visible property of a Windows Forms control to true, that property still returns false if any of the control\'s parent windows are hidden. Is there a way to g
What I did is temporarily remove the button from its parent controls to check its Visible value and then re-add to the parent controls.
If you need you can track the child index to re-add it at the right index.