MessageBoxButtons 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
MessageBox に表示するボタンを定義する定数を指定します。
public enum class MessageBoxButtons
public enum MessageBoxButtons
type MessageBoxButtons =
Public Enum MessageBoxButtons
- 継承
フィールド
AbortRetryIgnore | 2 | メッセージ ボックスに [中止]、[再試行]、および [無視] の各ボタンを含めます。 |
CancelTryContinue | 6 | メッセージ ボックスに Cancel、Try Again、および Continue ボタンが含まれていることを指定します。 |
OK | 0 | メッセージ ボックスに [OK] ボタンを含めます。 |
OKCancel | 1 | メッセージ ボックスに [OK] ボタンと [キャンセル] ボタンを含めます。 |
RetryCancel | 5 | メッセージ ボックスに [再試行] ボタンと [キャンセル] ボタンを含めます。 |
YesNo | 4 | メッセージ ボックスに [はい] ボタンと [いいえ] ボタンを含めます。 |
YesNoCancel | 3 | メッセージ ボックスに [はい]、[いいえ]、および [キャンセル] の各ボタンを含めます。 |
例
次のコード例は、 を使用 MessageBox して、フォームが閉じないようにする機会をユーザーに提供する方法を示しています。 この例では、フォームの イベントから メソッドを FormClosing 呼び出す必要があります。
private:
void Form1_FormClosing(Object^ sender, FormClosingEventArgs^ e)
{
// If the no button was pressed ...
if ((MessageBox::Show(
"Are you sure that you would like to close the form?",
"Form Closing", MessageBoxButtons::YesNo,
MessageBoxIcon::Question) == DialogResult::No))
{
// cancel the closure of the form.
e->Cancel = true;
}
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
const string message =
"Are you sure that you would like to close the form?";
const string caption = "Form Closing";
var result = MessageBox.Show(message, caption,
MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
// If the no button was pressed ...
if (result == DialogResult.No)
{
// cancel the closure of the form.
e.Cancel = true;
}
}
Private Sub Form1_FormClosing( _
ByVal sender As System.Object, _
ByVal e As System.Windows.Forms.FormClosingEventArgs) _
Handles MyBase.FormClosing
Dim message As String = _
"Are you sure that you would like to close the form?"
Dim caption As String = "Form Closing"
Dim result = MessageBox.Show(message, caption, _
MessageBoxButtons.YesNo, _
MessageBoxIcon.Question)
' If the no button was pressed ...
If (result = DialogResult.No) Then
' cancel the closure of the form.
e.Cancel = True
End If
End Sub
注釈
この列挙は、MessageBox クラスで使用します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET