MessageBox.Show メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
メッセージ ボックスを表示します。
オーバーロード
Show(String) |
メッセージを備え、結果を返すメッセージ ボックスを表示します。 |
Show(String, String) |
メッセージとタイトル バー キャプションを備え、結果を返すメッセージ ボックスを表示します。 |
Show(Window, String) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージを表示し、結果を返します。 |
Show(String, String, MessageBoxButton) |
メッセージ、タイトル バー キャプション、およびボタンを備え、結果を返すメッセージ ボックスを表示します。 |
Show(Window, String, String) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージとタイトル バー キャプションを表示し、結果を返します。 |
Show(String, String, MessageBoxButton, MessageBoxImage) |
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、結果を返すメッセージ ボックスを表示します。 |
Show(Window, String, String, MessageBoxButton) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、およびボタンを表示し、結果を返します。 |
Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult) |
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、既定のメッセージ ボックスの結果を受け入れ、結果を返すメッセージ ボックスを表示します。 |
Show(Window, String, String, MessageBoxButton, MessageBoxImage) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、結果を返します。 |
Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions) |
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、既定のメッセージ ボックスの結果を受け入れ、指定されたオプションに準拠し、結果を返すメッセージ ボックスを表示します。 |
Show(Window, String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、既定のメッセージ ボックスの結果を受け入れ、結果を返します。 |
Show(Window, String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions) |
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、既定のメッセージ ボックスの結果を受け入れ、指定されたオプションに準拠し、結果を返します。 |
注釈
メソッドのオーバーロードを Show 使用します。これにより、所有者ウィンドウを指定できます。 それ以外の場合、メッセージ ボックスは現在アクティブなウィンドウによって所有されます。
Show(String)
メッセージを備え、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText);
public static System.Windows.MessageBoxResult Show (string messageBoxText);
[<System.Security.SecurityCritical>]
static member Show : string -> System.Windows.MessageBoxResult
static member Show : string -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String) As MessageBoxResult
パラメーター
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
// Show message box
MessageBoxResult result = MessageBox.Show(message);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message)
End Sub
適用対象
Show(String, String)
メッセージとタイトル バー キャプションを備え、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText, System::String ^ caption);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption);
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption);
[<System.Security.SecurityCritical>]
static member Show : string * string -> System.Windows.MessageBoxResult
static member Show : string * string -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String, caption As String) As MessageBoxResult
パラメーター
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Message text";
string caption = "Caption text";
// Show message box
MessageBoxResult result = MessageBox.Show(message, caption);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Message text"
Dim caption As String = "Caption text"
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message, caption)
End Sub
適用対象
Show(Window, String)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージを表示し、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String) As MessageBoxResult
パラメーター
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、メッセージ ボックスは現在アクティブなウィンドウの前に表示されます。
こちらもご覧ください
適用対象
Show(String, String, MessageBoxButton)
メッセージ、タイトル バー キャプション、およびボタンを備え、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button);
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button);
[<System.Security.SecurityCritical>]
static member Show : string * string * System.Windows.MessageBoxButton -> System.Windows.MessageBoxResult
static member Show : string * string * System.Windows.MessageBoxButton -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String, caption As String, button As MessageBoxButton) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
string caption = "Caption text";
MessageBoxButton buttons = MessageBoxButton.OKCancel;
// Show message box
MessageBoxResult result = MessageBox.Show(message, caption, buttons);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
Dim caption As String = "Caption text"
Dim buttons As MessageBoxButton = MessageBoxButton.OKCancel
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message, caption, buttons)
End Sub
適用対象
Show(Window, String, String)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージとタイトル バー キャプションを表示し、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText, System::String ^ caption);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string * string -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string * string -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String, caption As String) As MessageBoxResult
パラメーター
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、メッセージ ボックスは現在アクティブなウィンドウの前に表示されます。
こちらもご覧ください
適用対象
Show(String, String, MessageBoxButton, MessageBoxImage)
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon);
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon);
[<System.Security.SecurityCritical>]
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage -> System.Windows.MessageBoxResult
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
string caption = "Caption text";
MessageBoxButton buttons = MessageBoxButton.OKCancel;
MessageBoxImage icon = MessageBoxImage.Information;
// Show message box
MessageBoxResult result = MessageBox.Show(message, caption, buttons, icon);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
Dim caption As String = "Caption text"
Dim buttons As MessageBoxButton = MessageBoxButton.OKCancel
Dim icon As MessageBoxImage = MessageBoxImage.Information
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message, caption, buttons, icon)
End Sub
適用対象
Show(Window, String, String, MessageBoxButton)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、およびボタンを表示し、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String, caption As String, button As MessageBoxButton) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、メッセージ ボックスは現在アクティブなウィンドウの前に表示されます。
こちらもご覧ください
適用対象
Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult)
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、既定のメッセージ ボックスの結果を受け入れ、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon, System::Windows::MessageBoxResult defaultResult);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult);
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult);
[<System.Security.SecurityCritical>]
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult -> System.Windows.MessageBoxResult
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage, defaultResult As MessageBoxResult) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
- defaultResult
- MessageBoxResult
メッセージ ボックスの既定の結果を指定する MessageBoxResult 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
string caption = "Caption text";
MessageBoxButton buttons = MessageBoxButton.OKCancel;
MessageBoxImage icon = MessageBoxImage.Information;
MessageBoxResult defaultResult = MessageBoxResult.OK;
// Show message box
MessageBoxResult result = MessageBox.Show(message, caption, buttons, icon, defaultResult);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
Dim caption As String = "Caption text"
Dim buttons As MessageBoxButton = MessageBoxButton.OKCancel
Dim icon As MessageBoxImage = MessageBoxImage.Information
Dim defaultResult As MessageBoxResult = MessageBoxResult.OK
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message, caption, buttons, icon, defaultResult)
End Sub
適用対象
Show(Window, String, String, MessageBoxButton, MessageBoxImage)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、メッセージ ボックスは現在アクティブなウィンドウの前に表示されます。
こちらもご覧ください
適用対象
Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions)
メッセージ、タイトル バー キャプション、ボタン、およびアイコンを備え、既定のメッセージ ボックスの結果を受け入れ、指定されたオプションに準拠し、結果を返すメッセージ ボックスを表示します。
public:
static System::Windows::MessageBoxResult Show(System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon, System::Windows::MessageBoxResult defaultResult, System::Windows::MessageBoxOptions options);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options);
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options);
[<System.Security.SecurityCritical>]
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult * System.Windows.MessageBoxOptions -> System.Windows.MessageBoxResult
static member Show : string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult * System.Windows.MessageBoxOptions -> System.Windows.MessageBoxResult
Public Shared Function Show (messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage, defaultResult As MessageBoxResult, options As MessageBoxOptions) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
- defaultResult
- MessageBoxResult
メッセージ ボックスの既定の結果を指定する MessageBoxResult 値。
- options
- MessageBoxOptions
オプションを指定する MessageBoxOptions 値オブジェクト。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
例
次の例は、 メソッドのこのオーバーロードを使用する方法を Show 示しています。
private void ShowMessageBoxButton_Click(object sender, RoutedEventArgs e)
{
// Configure message box
string message = "Hello, MessageBox!";
string caption = "Caption text";
MessageBoxButton buttons = MessageBoxButton.OKCancel;
MessageBoxImage icon = MessageBoxImage.Information;
MessageBoxResult defaultResult = MessageBoxResult.OK;
MessageBoxOptions options = MessageBoxOptions.RtlReading;
// Show message box
MessageBoxResult result = MessageBox.Show(message, caption, buttons, icon, defaultResult, options);
}
Private Sub showMessageBoxButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Configure message box
Dim message As String = "Hello, MessageBox!"
Dim caption As String = "Caption text"
Dim buttons As MessageBoxButton = MessageBoxButton.OKCancel
Dim icon As MessageBoxImage = MessageBoxImage.Information
Dim defaultResult As MessageBoxResult = MessageBoxResult.OK
Dim options As MessageBoxOptions = MessageBoxOptions.RtlReading
' Show message box
Dim result As MessageBoxResult = MessageBox.Show(message, caption, buttons, icon, defaultResult, options)
End Sub
適用対象
Show(Window, String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、既定のメッセージ ボックスの結果を受け入れ、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon, System::Windows::MessageBoxResult defaultResult);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage, defaultResult As MessageBoxResult) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
- defaultResult
- MessageBoxResult
メッセージ ボックスの既定の結果を指定する MessageBoxResult 値。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、現在アクティブなウィンドウの前にメッセージ ボックスが表示されます。
こちらもご覧ください
適用対象
Show(Window, String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions)
指定されたウィンドウの前面にメッセージ ボックスを表示します。 このメッセージ ボックスは、メッセージ、タイトル バー キャプション、ボタン、およびアイコンを表示し、既定のメッセージ ボックスの結果を受け入れ、指定されたオプションに準拠し、結果を返します。
public:
static System::Windows::MessageBoxResult Show(System::Windows::Window ^ owner, System::String ^ messageBoxText, System::String ^ caption, System::Windows::MessageBoxButton button, System::Windows::MessageBoxImage icon, System::Windows::MessageBoxResult defaultResult, System::Windows::MessageBoxOptions options);
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options);
public static System.Windows.MessageBoxResult Show (System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options);
[<System.Security.SecurityCritical>]
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult * System.Windows.MessageBoxOptions -> System.Windows.MessageBoxResult
static member Show : System.Windows.Window * string * string * System.Windows.MessageBoxButton * System.Windows.MessageBoxImage * System.Windows.MessageBoxResult * System.Windows.MessageBoxOptions -> System.Windows.MessageBoxResult
Public Shared Function Show (owner As Window, messageBoxText As String, caption As String, button As MessageBoxButton, icon As MessageBoxImage, defaultResult As MessageBoxResult, options As MessageBoxOptions) As MessageBoxResult
パラメーター
- button
- MessageBoxButton
表示する 1 つ以上のボタンを指定する MessageBoxButton 値。
- icon
- MessageBoxImage
表示するアイコンを指定する MessageBoxImage 値。
- defaultResult
- MessageBoxResult
メッセージ ボックスの既定の結果を指定する MessageBoxResult 値。
- options
- MessageBoxOptions
オプションを指定する MessageBoxOptions 値オブジェクト。
戻り値
ユーザーによってクリックされたメッセージ ボックス ボタンを指定する MessageBoxResult 値。
- 属性
注釈
既定では、現在アクティブなウィンドウの前にメッセージ ボックスが表示されます。
こちらもご覧ください
- Activated
- Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions)
適用対象
.NET