Represents a common dialog box that displays available colors along with controls that enable the user to define custom colors.
Windows | macOS | Gnome | |
---|---|---|---|
Light | ![]() | ![]() | ![]() |
Dark | ![]() | ![]() | ![]() |
Public Static Methods | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::forms::iwin32_window &owner) |
Displays a color box in front of the specified window. The color box displays a color. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::forms::iwin32_window &owner, const xtd::string &title) |
Displays a color box in front of the specified window. The color box displays a color. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::forms::iwin32_window &owner, const xtd::string &title, color_box_styles styles) |
Displays a color box in front of the specified window. The color box displays a color with styles. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::forms::iwin32_window &owner, const xtd::string &title, color_box_styles styles, const std::vector< xtd::drawing::color > &custom_colors) |
Displays a color box in front of the specified window. The color box displays a color with styles, and custom colors. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color) |
Displays a color box. The color box displays a color. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::string &title) |
Displays a color box. The color box displays a color. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::string &title, color_box_styles styles) |
Displays a color box. The color box displays a color with styles. | |
static xtd::forms::dialog_result | show (xtd::drawing::color &color, const xtd::string &title, color_box_styles styles, const std::vector< xtd::drawing::color > &custom_colors) |
Displays a color box. The color box displays a color with styles, and custom colors. | |
|
static |
Displays a color box in front of the specified window. The color box displays a color.
color | A xtd::drawing::color that specifies the color to display. |
owner | A iwin32_window that represents the owner window of the color box. |
|
static |
Displays a color box in front of the specified window. The color box displays a color.
color | A xtd::drawing::color that specifies the color to display. |
owner | A iwin32_window that represents the owner window of the color box. |
title | The file dialog box title. The default value is an empty string (""). |
|
static |
Displays a color box in front of the specified window. The color box displays a color with styles.
color | A xtd::drawing::color that specifies the color to display. |
owner | A iwin32_window that represents the owner window of the color box. |
title | The file dialog box title. The default value is an empty string (""). |
styles | A bitwise combination of the color_box_styles values. The default is alpha_color and allow_full_open. |
|
static |
Displays a color box in front of the specified window. The color box displays a color with styles, and custom colors.
color | A xtd::drawing::color that specifies the color to display. |
owner | A iwin32_window that represents the owner window of the color box. |
title | The file dialog box title. The default value is an empty string (""). |
styles | A bitwise combination of the color_box_styles values. The default is alpha_color and allow_full_open. |
custom_colors | A colors array that contains user custom colors. |
|
static |
Displays a color box. The color box displays a color.
color | A xtd::drawing::color that specifies the color to display. |
|
static |
Displays a color box. The color box displays a color.
color | A xtd::drawing::color that specifies the color to display. |
title | The file dialog box title. The default value is an empty string (""). |
|
static |
Displays a color box. The color box displays a color with styles.
color | A xtd::drawing::color that specifies the color to display. |
title | The file dialog box title. The default value is an empty string (""). |
styles | A bitwise combination of the color_box_styles values. The default is alpha_color and allow_full_open. |
|
static |
Displays a color box. The color box displays a color with styles, and custom colors.
color | A xtd::drawing::color that specifies the color to display. |
title | The file dialog box title. The default value is an empty string (""). |
styles | A bitwise combination of the color_box_styles values. The default is alpha_color and allow_full_open. |
custom_colors | A colors array that contains user custom colors. |