IUIService.ShowMessage Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Wyświetla określony komunikat w polu komunikatu.
Przeciążenia
ShowMessage(String) |
Wyświetla określony komunikat w polu komunikatu. |
ShowMessage(String, String) |
Wyświetla określony komunikat w polu komunikatu z określonym podpisem. |
ShowMessage(String, String, MessageBoxButtons) |
Wyświetla określony komunikat w oknie komunikatu z określonym podpisem i przyciskami do umieszczenia w oknie dialogowym. |
ShowMessage(String)
Wyświetla określony komunikat w polu komunikatu.
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
Widomość do wyświetlenia.
Przykłady
W poniższym przykładzie kodu pokazano, jak za pomocą ShowMessage metody wyświetlić pole komunikatu.
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
Uwagi
Ta metoda zapewnia, że wyświetlanie pola komunikatu jest prawidłowo zintegrowane ze środowiskiem deweloperskim.
Dotyczy
ShowMessage(String, String)
Wyświetla określony komunikat w polu komunikatu z określonym podpisem.
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
Widomość do wyświetlenia.
- caption
- String
Podpis pola wiadomości.
Przykłady
Poniższy przykład kodu próbuje uzyskać wystąpienie IUIService metody i wywołać metodę usługi 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
Uwagi
Ta metoda zapewnia, że wyświetlanie pola komunikatu jest prawidłowo zintegrowane ze środowiskiem deweloperskim.
Dotyczy
ShowMessage(String, String, MessageBoxButtons)
Wyświetla określony komunikat w oknie komunikatu z określonym podpisem i przyciskami do umieszczenia w oknie dialogowym.
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
Widomość do wyświetlenia.
- caption
- String
Podpis okna dialogowego.
- buttons
- MessageBoxButtons
Jedna z MessageBoxButtons wartości: OK, , OKCancelYesNolub YesNoCancel.
Zwraca
DialogResult Jedna z wartości wskazujących kod wyniku zwrócony przez okno dialogowe.
Przykłady
W poniższym przykładzie kodu pokazano, jak za pomocą ShowMessage metody wyświetlić pole komunikatu.
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
Uwagi
Ta metoda zapewnia, że wyświetlanie pola komunikatu jest prawidłowo zintegrowane ze środowiskiem deweloperskim.