MessageBoxButtons 列挙体
MessageBox に表示するボタンを定義する定数を指定します。
名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文
'宣言
Public Enumeration MessageBoxButtons
'使用
Dim instance As MessageBoxButtons
public enum MessageBoxButtons
public enum class MessageBoxButtons
public enum MessageBoxButtons
public enum MessageBoxButtons
メンバ
メンバ名 | 説明 | |
---|---|---|
AbortRetryIgnore | メッセージ ボックスに [中止]、[再試行]、および [無視] の各ボタンを含めます。 | |
OK | メッセージ ボックスに [OK] ボタンを含めます。 | |
OKCancel | メッセージ ボックスに [OK] ボタンと [キャンセル] ボタンを含めます。 | |
RetryCancel | メッセージ ボックスに [再試行] ボタンと [キャンセル] ボタンを含めます。 | |
YesNo | メッセージ ボックスに [はい] ボタンと [いいえ] ボタンを含めます。 | |
YesNoCancel | メッセージ ボックスに [はい]、[いいえ]、および [キャンセル] の各ボタンを含めます。 |
解説
この列挙体は MessageBox クラスで使用されます。
使用例
Private Sub button1_Click(sender As Object, e As System.EventArgs)
If textBox1.Text = "" Then
MessageBox.Show("You must enter a name.", "Name Entry Error", _
MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Else
' Code to act on the data entered would go here.
End If
End Sub
private void button1_Click(object sender, System.EventArgs e) {
if(textBox1.Text == "") {
MessageBox.Show("You must enter a name.", "Name Entry Error",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
else {
// Code to act on the data entered would go here.
}
}
private:
void button1_Click( Object^ sender, System::EventArgs^ e )
{
if ( textBox1->Text->Equals( "" ) )
{
MessageBox::Show( "You must enter a name.", "Name Entry Error",
MessageBoxButtons::OK, MessageBoxIcon::Exclamation );
}
else
{
// Code to act on the data entered would go here.
}
}
protected void button1_Click(Object sender, System.EventArgs e)
{
if (textBox1.get_Text().Equals("")) {
MessageBox.Show("You must enter a name.", "Name Entry Error",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
else {
// Code to act on the data entered would go here.
}
} //button1_Click
プラットフォーム
Windows 98, Windows 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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 2.0、1.1、1.0
.NET Compact Framework
サポート対象 : 2.0、1.0