Updated ColorPicker (markdown)

master
XceedBoucherS 7 years ago
parent
commit
e54e2c79f3
  1. 13
      ColorPicker.md

13
ColorPicker.md

@ -18,7 +18,7 @@ The ColorPicker is an editor that allows a user to pick a color from predefined
### Properties ### Properties
| Property | Description | | 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. | | 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. | | 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. | | 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. | | 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. | | 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. | | 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. | | 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. | | RecentColors | Gets or sets all the recently selected colors. |
| RecentColorsHeader | Gets or sets the header text of the Recent Colors section. | | RecentColorsHeader | Gets or sets the header text of the Recent Colors section. |
| SelectedColor | Gets or sets the currently selected color. | | SelectedColor | Gets or sets the currently selected color. |
| SelectedColorText | Gets the known color name, or the color hexadecimal string of the **SelectedColor**. | | 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**. | | ShowAvailableColors | Gets or sets the visibility of the **AvailableColors**. |
| ShowDropDownButton | Gets or sets a value indicating whether the dropdown button is shown. | | 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). | | ShowRecentColors | Gets or sets the visibility of the **RecentColors** (false by default). |
| ShowStandardColors | Gets or sets the visibility of the **StandardColors**. | | 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. | | StandardColors | Gets or sets a standard color palette. |
| StandardColorsHeader | Gets or sets the header text of the Standard Colors section. | | 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. | | UsingAlphaChannel | Gets a value indicating whether the alpha channel is being used. |
### Events ### Events
| Event | Description | | 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. | | SelectedColorChanged | Raised when the **SelectedColor** value changes. |
--- ---

Loading…
Cancel
Save