Control.Hide 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
對使用者隱藏控制項。
public:
void Hide();
public void Hide ();
member this.Hide : unit -> unit
Public Sub Hide ()
範例
如果按下按鈕時按下 CTRL 鍵,下列程式碼範例會隱藏按鈕。 此範例要求您在 上具有 Button 具名 button1
的 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.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 屬性設定為 false
。 Hide呼叫 方法之後, Visible 屬性會傳回 的值 false
,直到 Show 呼叫 方法為止。