C# 클래스 Accord.Controls.Histogram

Histogram control.

The control displays histograms represented with integer arrays, where each array's element keeps occurrence number of the corresponding element.

Sample usage:

// create array with histogram values int[] histogramValues = new int[] { 3, 8, 53, 57, 79, 69, ... }; // set values to histogram control histogram.Values = histogramValues;

Sample control's look:

상속: System.Windows.Forms.Control
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Histogram_MouseDown void
Histogram_MouseLeave void
Histogram_MouseMove void
Histogram_MouseUp void
InitializeComponent void

공개 메소드들

메소드 설명
Histogram ( ) : System

Initializes a new instance of the Histogram class.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Dispose the object.

OnPaint ( PaintEventArgs e ) : void

Paint the control.

비공개 메소드들

메소드 설명
Histogram_MouseDown ( object sender, System e ) : void
Histogram_MouseLeave ( object sender, System e ) : void
Histogram_MouseMove ( object sender, System e ) : void
Histogram_MouseUp ( object sender, System e ) : void
InitializeComponent ( ) : void

메소드 상세

Dispose() 보호된 메소드

Dispose the object.
protected Dispose ( bool disposing ) : void
disposing bool Indicates if disposing was initiated manually.
리턴 void

Histogram() 공개 메소드

Initializes a new instance of the Histogram class.
public Histogram ( ) : System
리턴 System

OnPaint() 보호된 메소드

Paint the control.
protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs Data for Paint event.
리턴 void