Control.Hide 方法

定义

对用户隐藏控件。

C#
public void Hide ();

示例

如果单击该按钮时按下 Ctrl 键,下面的代码示例将隐藏按钮。 本示例要求你在一个ButtonForm名称上命名button1

C#
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)
   {
      ((Control)sender).Hide();
   }
}

注解

隐藏控件等效于将 Visible 属性设置为 false. Hide调用该方法后,该Visible属性将返回一个值,false直到Show调用该方法。

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

另请参阅