1

How to know that control is visible to user?

Yuriy
  • 2,670
  • 6
  • 33
  • 48
  • Do you mean whether the user can actually see the control? See http://stackoverflow.com/questions/4747935/c-winform-check-if-control-is-physicaly-visible – stuartd May 25 '11 at 15:07

1 Answers1

2

On a Windows Form you can just check the .Visible property on the control. You can also use it to set the visibility.

Russell Patterson
  • 622
  • 3
  • 10
  • 23