Sdílet prostřednictvím


IUIService.ShowMessage Metoda

Definice

Zobrazí zadanou zprávu v okně se zprávou.

Přetížení

ShowMessage(String)

Zobrazí zadanou zprávu v okně se zprávou.

ShowMessage(String, String)

Zobrazí zadanou zprávu v okně se zprávou se zadaným titulkem.

ShowMessage(String, String, MessageBoxButtons)

Zobrazí zadanou zprávu v okně se zprávou se zadaným titulkem a tlačítky, která se mají umístit do dialogového okna.

ShowMessage(String)

Zobrazí zadanou zprávu v okně se zprávou.

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

Parametry

message
String

Zpráva, která se má zobrazit

Příklady

Následující příklad kódu ukazuje, jak použít metodu ShowMessage k zobrazení okna se zprávou.

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

Poznámky

Tato metoda zajišťuje, aby zobrazení okna se zprávou bylo správně integrováno s vývojovým prostředím.

Platí pro

ShowMessage(String, String)

Zobrazí zadanou zprávu v okně se zprávou se zadaným titulkem.

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)

Parametry

message
String

Zpráva, která se má zobrazit

caption
String

Titulek pro okno se zprávou.

Příklady

Následující příklad kódu se pokusí získat instanci IUIService a vyvolat metodu služby 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

Poznámky

Tato metoda zajišťuje, aby zobrazení okna se zprávou bylo správně integrováno s vývojovým prostředím.

Platí pro

ShowMessage(String, String, MessageBoxButtons)

Zobrazí zadanou zprávu v okně se zprávou se zadaným titulkem a tlačítky, která se mají umístit do dialogového okna.

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

Parametry

message
String

Zpráva, která se má zobrazit

caption
String

Titulek dialogového okna.

Návraty

Jedna z DialogResult hodnot označujících kód výsledku vrácený dialogem.

Příklady

Následující příklad kódu ukazuje, jak použít metodu ShowMessage k zobrazení okna se zprávou.

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

Poznámky

Tato metoda zajišťuje, aby zobrazení okna se zprávou bylo správně integrováno s vývojovým prostředím.

Viz také

Platí pro