共用方式為


IUIService.ShowMessage 方法

定義

在訊息方塊中顯示指定的訊息。

多載

ShowMessage(String)

在訊息方塊中顯示指定的訊息。

ShowMessage(String, String)

以指定的標題在訊息方塊中顯示指定的訊息。

ShowMessage(String, String, MessageBoxButtons)

以指定的標題在訊息方塊中顯示指定的訊息,並且在對話方塊上放上按鈕。

ShowMessage(String)

在訊息方塊中顯示指定的訊息。

public:
 void ShowMessage(System::String ^ message);
public void ShowMessage (string message);
abstract member ShowMessage : string -> unit
Public Sub ShowMessage (message As String)

參數

message
String

要顯示的訊息。

範例

下列程式碼範例示範如何使用 ShowMessage 方法來顯示訊息方塊。

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowMessage( "Test message", "Test caption", System::Windows::Forms::MessageBoxButtons::AbortRetryIgnore );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowMessage("Test message", "Test caption", 
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore);
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowMessage("Test message", "Test caption", _
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore)
End If

備註

此方法可確保訊息方塊的顯示與開發環境正確整合。

適用於

ShowMessage(String, String)

以指定的標題在訊息方塊中顯示指定的訊息。

public:
 void ShowMessage(System::String ^ message, System::String ^ caption);
public void ShowMessage (string message, string caption);
abstract member ShowMessage : string * string -> unit
Public Sub ShowMessage (message As String, caption As String)

參數

message
String

要顯示的訊息。

caption
String

訊息方塊的標題。

範例

下列程式碼範例會嘗試取得 的 IUIService 實例,並叫用 ShowMessage 服務的 方法。

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowMessage( "Test message", "Test caption", System::Windows::Forms::MessageBoxButtons::AbortRetryIgnore );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowMessage("Test message", "Test caption", 
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore);
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowMessage("Test message", "Test caption", _
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore)
End If

備註

此方法可確保訊息方塊的顯示與開發環境正確整合。

適用於

ShowMessage(String, String, MessageBoxButtons)

以指定的標題在訊息方塊中顯示指定的訊息,並且在對話方塊上放上按鈕。

public:
 System::Windows::Forms::DialogResult ShowMessage(System::String ^ message, System::String ^ caption, System::Windows::Forms::MessageBoxButtons buttons);
public System.Windows.Forms.DialogResult ShowMessage (string message, string caption, System.Windows.Forms.MessageBoxButtons buttons);
abstract member ShowMessage : string * string * System.Windows.Forms.MessageBoxButtons -> System.Windows.Forms.DialogResult
Public Function ShowMessage (message As String, caption As String, buttons As MessageBoxButtons) As DialogResult

參數

message
String

要顯示的訊息。

caption
String

對話方塊的標題。

buttons
MessageBoxButtons

其中一個 MessageBoxButtons 值:OKOKCancelYesNoYesNoCancel

傳回

DialogResult

其中一個 DialogResult 值,指出對話方塊傳回的結果碼。

範例

下列程式碼範例示範如何使用 ShowMessage 方法來顯示訊息方塊。

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowMessage( "Test message", "Test caption", System::Windows::Forms::MessageBoxButtons::AbortRetryIgnore );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowMessage("Test message", "Test caption", 
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore);
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowMessage("Test message", "Test caption", _
        System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore)
End If

備註

此方法可確保訊息方塊的顯示與開發環境正確整合。

另請參閱

適用於