共用方式為


IUIService.ShowError 方法

定義

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

多載

ShowError(Exception)

在訊息方塊顯示指定的例外狀況和例外狀況的相關資訊。

ShowError(String)

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

ShowError(Exception, String)

在訊息方塊顯示指定的例外狀況和例外狀況的相關資訊。

ShowError(Exception)

在訊息方塊顯示指定的例外狀況和例外狀況的相關資訊。

public:
 void ShowError(Exception ^ ex);
public void ShowError (Exception ex);
abstract member ShowError : Exception -> unit
Public Sub ShowError (ex As Exception)

參數

ex
Exception

要顯示的 Exception

備註

使用此方法可讓訊息方塊顯示與開發環境正確整合。

適用於

ShowError(String)

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

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

參數

message
String

要顯示的錯誤訊息。

備註

使用此方法可讓訊息方塊顯示與開發環境正確整合。

適用於

ShowError(Exception, String)

在訊息方塊顯示指定的例外狀況和例外狀況的相關資訊。

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

參數

ex
Exception

要顯示的 Exception

message
String

要顯示的訊息,提供例外狀況相關資訊。

範例

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

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowError( gcnew Exception( "This is a message in a test exception, displayed by the IUIService",gcnew ArgumentException( "Test inner exception" ) ) );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowError( new Exception(
        "This is a message in a test exception, " + 
        "displayed by the IUIService", 
         new ArgumentException("Test inner exception")));
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowError(New Exception( _
        "This is a message in a test exception, displayed by the IUIService", _
        New ArgumentException("Test inner exception")))
End If

備註

使用此方法可讓訊息方塊顯示與開發環境正確整合。

適用於