C # UserControl Visible Property

How can I override a property UserControl Visible? Or how can I determine inside the control when it changes state Visible?

Further editing: I need it to work in .NET CF 3.5.

Thanks.

+5
source share
2 answers

I finally fixed the problem by adding a property new Visiblethat sets the property base.Visibleand does my own work.

+7
source

Try subscribing to the IsVisibleChanged event

+1
source

All Articles