ColorPicker API | WPF | C# | Saatody | Amit Padhiyar
This is color picker widget fully created in WPF C#. Here is the full API of ColorPicker widget.
ColorPicker Class API
Properties
Syntax
public Color SelectedColorConstructors
This is one and default constructor.
Syntax
public ColorPicker()Events
Syntax
public event EventHandler SelectedColorChanged;ColorPickerTabItem Class API
Properties
Syntax
public Color SelectedColorConstructors
This is one and default constructor.
Syntax
public ColorPickerTabItem()Events
Syntax
public event EventHandler SelectedColorChanged;StandardColorsTabItem Class API
Properties
Syntax
public Color SelectedColorConstructors
This is one and default constructor.
Syntax
public StandardColorsTabItem()Events
Syntax
public event EventHandler SelectedColorChanged;Point7ColorPicker Class API
Properties
Syntax
public double SelectedOffsetConstructors
This is one and default constructor.
Syntax
public Point7ColorPicker()Events
Syntax
public event EventHandler SelectedOffsetChanged;Point4ColorPicker Class API
Properties
Syntax
public Point SelectedOffset
public Color SelectedColorConstructors
This is one and default constructor.
Syntax
public Point4ColorPicker()Events
Syntax
public event EventHandler SelectedOffsetChanged;Point1ColorPicker Class API
Properties
Syntax
public Color SelectedColorConstructors
This is one and default constructor.
Syntax
public Point1ColorPicker()StandardColorsListBoxItem Class API
Properties
Syntax
public Color ColorConstructors
This is one and default constructor.
Syntax
public StandardColorsListBoxItem()ColorPicker Example
XAML (.xaml)
<gui:ColorPicker x:Name="ColorPicker"/>C# (.cs)
ColorPicker.SelectedColorChanged += (sender, e) =>
{
Color color = ColorPicker.SelectedColor;
};
Comments
Post a Comment