Control::VisibleChanged Event
Occurs when the Visible property value changes.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
This event is raised if the Visible property is changed by either a programmatic modification or user interaction.
For more information about handling events, see Consuming Events.
The following code example raises the VisibleChanged event when the Visible property value of the Label control has changed.
private: void Button_HideLabel( Object^ /*sender*/, EventArgs^ /*e*/ ) { myLabel->Visible = false; } void AddVisibleChangedEventHandler() { myLabel->VisibleChanged += gcnew EventHandler( this, &MyForm::Label_VisibleChanged ); } void Label_VisibleChanged( Object^ /*sender*/, EventArgs^ /*e*/ ) { MessageBox::Show( "Visible change event raised!!!" ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.