Control.Hide 方法

定義

對使用者隱藏控制項。

public:
 void Hide();
public void Hide ();
member this.Hide : unit -> unit
Public Sub Hide ()

範例

如果按下按鈕時按下 CTRL 鍵,下列程式碼範例會隱藏按鈕。 此範例要求您在 上具有 Button 具名 button1Form

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.ModifierKeys == Keys.Control)
   {
      ((Control)sender).Hide();
   }
}
Private Sub button1_Click(sender As Object, _
  e As EventArgs) Handles button1.Click
   ' If the CTRL key is pressed when the 
   ' control is clicked, hide the control. 
   If Control.ModifierKeys = Keys.Control Then
      CType(sender, Control).Hide()
   End If
End Sub

備註

隱藏控制項相當於將 Visible 屬性設定為 falseHide呼叫 方法之後, Visible 屬性會傳回 的值 false ,直到 Show 呼叫 方法為止。

適用於

另請參閱