Class UnifiedColorViewModel
Represents a unified view of all color schemas (RGB, HLS, HSV, CMYK and HEX).
Inherited Members
Namespace: Telerik.Windows.Controls.ColorEditor
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class UnifiedColorViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable
Constructors
UnifiedColorViewModel(RadColorEditor)
Initializes a new instance of the Unified
Declaration
public UnifiedColorViewModel(RadColorEditor colorEditor)
Parameters
Rad The color editor. |
Properties
Cmyka
Gets or sets the Cyan, Magenta, Yellow, Key/Black (CMYK) color view model.
Declaration
public CmykaColorViewModel Cmyka { get; set; }
Property Value
Cmyka The color. |
Hex
Gets or sets the HEX color view model.
Declaration
public HexColorViewModel Hex { get; set; }
Property Value
Hex The hex. |
Hlsa
Gets or sets the Hue, Luminance, Saturation (HLS) color view model.
Declaration
public HlsaColorViewModel Hlsa { get; set; }
Property Value
Hlsa The color. |
Hsva
Gets or sets the Hue, Saturation, Value (HSV) color view model.
Declaration
public HsvaColorViewModel Hsva { get; set; }
Property Value
Hsva The color. |
Rgba
Gets or sets the Red, Green, Blue (RGB) color view model.
Declaration
public RgbaColorViewModel Rgba { get; set; }
Property Value
Rgba The color. |
SelectedColorViewModel
Gets or sets the selected color view model.
Declaration
public ColorViewModel SelectedColorViewModel { get; set; }
Property Value
Color The selected color view model. |
Methods
Dispose(Boolean)
Releases unmanaged and - optionally - managed resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
System.
|