Aracılığıyla paylaş


IUIService.ShowDialog(Form) Yöntem

Tanım

Belirtilen formu bir iletişim kutusunda görüntülemeye çalışır.

public:
 System::Windows::Forms::DialogResult ShowDialog(System::Windows::Forms::Form ^ form);
public System.Windows.Forms.DialogResult ShowDialog (System.Windows.Forms.Form form);
abstract member ShowDialog : System.Windows.Forms.Form -> System.Windows.Forms.DialogResult
Public Function ShowDialog (form As Form) As DialogResult

Parametreler

form
Form

Form Görüntülenecek.

Döndürülenler

DialogResult

DialogResult İletişim kutusu tarafından döndürülen sonuç kodunu gösteren değerlerden biri.

Örnekler

Aşağıdaki kod örneği, sınıfının bir örneğini IUIService almayı ve hizmetin ShowDialog yöntemini çağırmayı dener.

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowDialog( gcnew ExampleForm );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowDialog(new ExampleForm());
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowDialog(New ExampleForm())
End If

Şunlara uygulanır

Ayrıca bkz.