Dialogs

The Dialogs section of the Toolbox contains dialog controls that can be added to the flow, such as Open File and Save File dialogs.

ColorDialog

The ColorDialog control provides a common dialog box displaying the available colours, along with controls for the user to define custom colours.

The inherited member ShowDialog must be invoked in order to display the Color Dialog. The Color data property is used to determine the colour selected by the user.

See ColorDialog.

FolderBrowserDialog

The FolderBrowserDialog control provides the user with a prompt to browse, create, and eventually select a folder. This control is not used for selecting files.

Folder browsing is achieved using a tree control, and only file system folders can be selected, not virtual folders.

See FolderBrowserDialog.

FontDialog

The FontDialog control provides a dialog that prompts the user to select a font from those installed on the local computer.

The inherited member ShowDialog must be invoked in order to display the Font Dialog. The Font data property is used to determine the font selected by the user.

See FontDialog.

OpenFileDialog

The OpenFileDialog provides a dialog that prompts the user to select and open a file.

See OpenFileDialog.

SaveFileDialog

The SaveFileDialog component provides a dialog that prompts the user to select a location for saving a file.

The component can be configured to either open and overwrite an existing file or create a new file.

See SaveFileDialog.