NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form.ShowDialog (IWin32Window)

Shows this form as a modal dialog with the specified owner.

[Visual Basic]
Overloads Public Function ShowDialog( _
   ByVal owner As IWin32Window _
) As DialogResult
[C#]
public DialogResult ShowDialog(
   IWin32Window owner
);
[C++]
public: DialogResult ShowDialog(
   IWin32Window* owner
);
[JScript]
public function ShowDialog(
   owner : IWin32Window
) : DialogResult;

Parameters

owner
Top-level window that will own the modal dialog (e.g.: System.WinForms.Form)

Return Value

The DialogResult from the form

See Also

Form Class | Form Members | System.WinForms Namespace | Form.ShowDialog Overload List