The ShowDialog action, in Configuration Manager 2007, opens a property sheet or regular dialog box in the Configuration Manager console. With the ShowDialog action, you can display existing dialog boxes or extension dialog boxes that you create.
The following attributes and elements are specific to an action that opens a dialog box:
- The ActionDescription element Class attribute is
set to ShowDialog.
- The DialogID element is the identifier for a property
sheet or dialog box displayed in a dialog. It matches the name of
the form XML file in the %ProgramFiles%\Microsoft
Configuration Manager\AdminUI\XmlStorage\Extensions\Forms
folder.
Sample ShowDialog Action XML
The following XML shows how to show a dialog box with the identifier PrototypeForm:
Copy Code | |
---|---|
<ActionDescription Class="ShowDialog" DisplayName="Test Action (dialog)" MnemonicDisplayName="Mnemonic" Description="Description"> <DialogId>PrototypeForm</DialogId> </ActionDescription> |
Sample Properties ShowDialog Action XML
The following attributes and elements are specific to an action that adds a property page to a properties property sheet:
- The ActionDescription element ActionVerb
attribute is set to Properties.
- The DialogID element identifies a property sheet
containing the property page to be displayed in the
Properties dialog.
The following XML shows how to integrate a property page (PrototypeForm) into a properties context menu option:
Copy Code | |
---|---|
<ActionDescription ActionVerb="Properties" Class="ShowDialog"> <DialogId>PrototypeForm</DialogId> </ActionDescription> |
For more information about creating and showing dialog boxes, see Configuration Manager Console Forms.
See Also
Tasks
How to Create a Configuration Manager ActionHow to Create Form XML for a Configuration Manager Property Sheet
How to Create Form XML for a Configuration Manager Dialog Box
Concepts
About Configuration Manager Console FormsConfiguration Manager Actions
How to Find a Configuration Manager Console Node GUID
Send comments about this topic to Microsoft.