Control.Hide メソッド
コントロールをユーザーに対して非表示にします。
Public Sub Hide()
[C#]
public void Hide();
[C++]
public: void Hide();
[JScript]
public function Hide();
解説
コントロールを非表示にすることは、 Visible プロパティを false に設定することと同じです。 Hide メソッドが呼び出された後、 Visible プロパティは Show メソッドが呼び出されるまで、 false の値を返します。
使用例
[Visual Basic, C#, C++] ボタンがクリックされたときに Ctrl キーが押されている場合、次の例ではそのボタンが非表示になります。この例は、 button1
という Button が Form 上にあることを前提にしています。
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
[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();
}
}
[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) {
(dynamic_cast<Control*>(sender))->Hide();
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Control クラス | Control メンバ | System.Windows.Forms 名前空間 | Visible | Show