DialogWindow Constructors

Definition

Overloads

DialogWindow()

Initialize the dialog that does not have Help button

DialogWindow(String)

Initialize a dialog that has Help topic and buttons Use ShowModal() to display the dialog; it will get the parent window automatically from the shell

DialogWindow()

Initialize the dialog that does not have Help button

public:
 DialogWindow();
public:
 DialogWindow();
 DialogWindow();
public DialogWindow ();
Public Sub New ()

Applies to

DialogWindow(String)

Initialize a dialog that has Help topic and buttons Use ShowModal() to display the dialog; it will get the parent window automatically from the shell

public:
 DialogWindow(System::String ^ helpTopic);
public:
 DialogWindow(Platform::String ^ helpTopic);
 DialogWindow(std::wstring const & helpTopic);
public DialogWindow (string helpTopic);
new Microsoft.VisualStudio.PlatformUI.DialogWindow : string -> Microsoft.VisualStudio.PlatformUI.DialogWindow
Public Sub New (helpTopic As String)

Parameters

helpTopic
String

The dialog's help topic

Remarks

Use ShowModal to display the dialog; it will get the parent window automatically from the shell.

Applies to