C# Class AForge.Controls.ColorSlider

Color slider control.

The control represent a color slider, which allows selecting one or two values in the [0, 255] range. The application of this control includes mostly areas of image processing and computer vision, where it is required to select color threshold or ranges for different type of color filtering.

Depending on the control's Type, it has different look and may suite different tasks. See documentation to ColorSliderType for information about available type and possible control's looks.

Inheritance: System.Windows.Forms.Control
Show file Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Private Properties

Property Type Description
ColorSlider_MouseDown void
ColorSlider_MouseMove void
ColorSlider_MouseUp void
ColorSlider_Paint void
InitializeComponent void

Public Methods

Method Description
ColorSlider ( ) : System

Initializes a new instance of the ColorSlider class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Dispose the object.

Private Methods

Method Description
ColorSlider_MouseDown ( object sender, System e ) : void
ColorSlider_MouseMove ( object sender, System e ) : void
ColorSlider_MouseUp ( object sender, System e ) : void
ColorSlider_Paint ( object sender, PaintEventArgs e ) : void
InitializeComponent ( ) : void

Method Details

ColorSlider() public method

Initializes a new instance of the ColorSlider class.
public ColorSlider ( ) : System
return System

Dispose() protected method

Dispose the object.
protected Dispose ( bool disposing ) : void
disposing bool Specifies if disposing was invoked by user's code.
return void