DialogResult 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ダイアログ ボックスの戻り値を示す識別子を指定します。
public enum class DialogResult
[System.Runtime.InteropServices.ComVisible(true)]
public enum DialogResult
public enum DialogResult
[<System.Runtime.InteropServices.ComVisible(true)>]
type DialogResult =
type DialogResult =
Public Enum DialogResult
- 継承
- 属性
フィールド
Abort | 3 | ダイアログ ボックスの戻り値は |
Cancel | 2 | ダイアログ ボックスの戻り値は |
Continue | 11 | ダイアログ ボックスの戻り値は Continue です (通常、[続行] というラベルのボタンから送信されます)。 |
Ignore | 5 | ダイアログ ボックスの戻り値は |
No | 7 | ダイアログ ボックスの戻り値は |
None | 0 | ダイアログ ボックスから |
OK | 1 | ダイアログ ボックスの戻り値は |
Retry | 4 | ダイアログ ボックスの戻り値は |
TryAgain | 10 | ダイアログ ボックスの戻り値は [再試行] です (通常、[再試行] というラベルのボタンから送信されます)。 |
Yes | 6 | ダイアログ ボックスの戻り値は |
例
次のコード例では、このオーバーロードでサポートされているオプションを使用して a MessageBox を表示する方法を Show示します。 文字列変数が空であることを確認した後、 ServerName
この例では、操作を取り消すオプションをユーザーに提供する 、 を表示 MessageBoxします。 メソッドの戻り値が Show Yes と評価された場合、表示された MessageBox フォームは閉じられます。
private:
void validateUserEntry5()
{
// Checks the value of the text.
if ( serverName->Text->Length == 0 )
{
// Initializes the variables to pass to the MessageBox::Show method.
String^ message = "You did not enter a server name. Cancel this operation?";
String^ caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons::YesNo;
System::Windows::Forms::DialogResult result;
// Displays the MessageBox.
result = MessageBox::Show( this, message, caption, buttons );
if ( result == ::DialogResult::Yes )
{
// Closes the parent form.
this->Close();
}
}
}
private void validateUserEntry5()
{
// Checks the value of the text.
if(serverName.Text.Length == 0)
{
// Initializes the variables to pass to the MessageBox.Show method.
string message = "You did not enter a server name. Cancel this operation?";
string caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
// Displays the MessageBox.
result = MessageBox.Show(this, message, caption, buttons);
if(result == DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}
Private Sub ValidateUserEntry5()
' Checks the value of the text.
If ServerName.Text.Length = 0 Then
' Initializes variables to pass to the MessageBox.Show method.
Dim Message As String = "You did not enter a server name. Cancel this operation?"
Dim Caption As String = "No Server Name Specified"
Dim Buttons As Integer = MessageBoxButtons.YesNo
Dim Result As DialogResult
'Displays a MessageBox using the Question icon and specifying the No button as the default.
Result = MessageBox.Show(Me, Message, Caption, MessageBoxButtons.YesNo)
' Gets the result of the MessageBox display.
If Result = System.Windows.Forms.DialogResult.Yes Then
' Closes the parent form.
Me.Close()
End If
End If
End Sub
注釈
プロパティとメソッドは Button.DialogResult 、この列挙体を Form.ShowDialog 使用します。