Displays a modal dialog box that is owned by the specified parent.
Namespace:
Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in
microsoft.configurationmanagement.dll)
Usage
Visual Basic |
Dim parent As IWin32Window
Dim dialog As CommonDialog
Dim returnValue As DialogResult
returnValue = DialogHelper.ShowDialog(parent, dialog)
|
Syntax
Visual Basic |
Public Shared Function ShowDialog ( _
parent As IWin32Window, _
dialog As CommonDialog _
) As DialogResult
|
C# |
public static DialogResult ShowDialog (
IWin32Window parent,
CommonDialog dialog
)
|
C++ |
public:
static DialogResult ShowDialog (
IWin32Window^ parent,
CommonDialog^ dialog
)
|
J# |
public static DialogResult ShowDialog (
IWin32Window parent,
CommonDialog dialog
)
|
JScript |
public static function ShowDialog (
parent : IWin32Window,
dialog : CommonDialog
) : DialogResult
|
Parameters
- parent
-
[in] System.Windows.Forms.IWin32Window object for the
parent.
- dialog
-
[in] System.Windows.Forms.CommonDialog object.
Return Value
System.Windows.Forms.DialogResult enumeration value.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2003,Windows Vista
See Also