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