From e54e2c79f372f6c6c53c821aba2bf60cb2e5bbd1 Mon Sep 17 00:00:00 2001 From: XceedBoucherS Date: Thu, 17 Oct 2019 07:25:15 -0400 Subject: [PATCH] Updated ColorPicker (markdown) --- ColorPicker.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/ColorPicker.md b/ColorPicker.md index 1cef80a..c9f2d77 100644 --- a/ColorPicker.md +++ b/ColorPicker.md @@ -18,7 +18,7 @@ The ColorPicker is an editor that allows a user to pick a color from predefined ### Properties | Property | Description | | --- | --- | -| AdvancedButtonHeader | Gets or sets a value representing the text to use for the "Advanced" button in the ColorPicker's popup. | +| AdvancedTabHeader | Gets or sets the text to use for the "Advanced" tab in the ColorPicker's popup. | | AvailableColors | Gets or sets all colors that are available to the user for selection. | | AvailableColorsHeader | Gets or sets the header text of the Available Colors section. | | AvailableColorSortingMode | Gets or sets the way the Available colors are sorted (Alphabetical or by HueSaturationBrightness). By default, Alphabetical. | @@ -26,24 +26,31 @@ The ColorPicker is an editor that allows a user to pick a color from predefined | ColorMode | Gets or sets the current display of the ColorPicker (ColorPalette or ColorCanvas). By default, ColorPalette. | | DisplayColorAndName | Gets or sets a value indicating if the control should display the color, or the color and color name. | | DisplayColorTooltip | Gets or sets if Tooltips will be shown in the popup of the ColorPicker to display the preset color names. Default is True. | +| DropDownBackground | Gets or sets the background of the popup. | +| HeaderBackground | Gets or sets the background of the headers used in the popup. | +| HeaderForeground | Gets or sets the foreground of the headers used in the popup. | | IsOpen | Gets or sets the value indicating if the color dropdown is open. | +| MaxDropDownWidth | Gets or Sets the maximum width of the ColorPicker popup's content. | | RecentColors | Gets or sets all the recently selected colors. | | RecentColorsHeader | Gets or sets the header text of the Recent Colors section. | | SelectedColor | Gets or sets the currently selected color. | | SelectedColorText | Gets the known color name, or the color hexadecimal string of the **SelectedColor**. | -| ShowAdvancedButton | Gets or sets the visibility of the Advance color mode button. | | ShowAvailableColors | Gets or sets the visibility of the **AvailableColors**. | | ShowDropDownButton | Gets or sets a value indicating whether the dropdown button is shown. | | ShowRecentColors | Gets or sets the visibility of the **RecentColors** (false by default). | | ShowStandardColors | Gets or sets the visibility of the **StandardColors**. | -| StandardButtonHeader | Gets or sets the text to use for the "Standard" button in the ColorPicker's popup. | +| ShowTabHeaders| Gets or sets a value indicating if the Advanced color mode tabs are visible in the popup. | | StandardColors | Gets or sets a standard color palette. | | StandardColorsHeader | Gets or sets the header text of the Standard Colors section. | +| TabBackground | Gets or sets the background of the tabs used in the popup. | +| TabForeground | Gets or sets the foreground of the tabs used in the popup. | | UsingAlphaChannel | Gets a value indicating whether the alpha channel is being used. | ### Events | Event | Description | | --- | --- | +| Closed | Raised when the ColorPicker popup is closed. | +| Opened | Raised when the ColorPicker popup is opened. | | SelectedColorChanged | Raised when the **SelectedColor** value changes. | ---