Control.Hide Method
.NET Framework 3.0
Conceals the control from the user.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The following code example hides a button if the CTRL key is pressed when the button is clicked. This example requires that you have a Button named button1 on a Form.
private: void button1_Click( Object^ sender, System::EventArgs^ /*e*/ ) { /* If the CTRL key is pressed when the * control is clicked, hide the control. */ if ( Control::ModifierKeys == Keys::Control ) { (dynamic_cast<Control^>(sender))->Hide(); } }
private void button1_Click(Object sender, System.EventArgs e)
{
/* If the CTRL key is pressed when the
control is clicked, hide the control.
*/
if (Control.get_ModifierKeys().Equals(Keys.Control)) {
((Control)sender).Hide();
}
} //button1_Click
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: