C# Класс ARCed.Controls.MultiStateCheckbox

Control that provides functionality for user-defined checkbox values and markers
Наследование: System.Windows.Forms.CheckBox
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
InitializeComponent void
MultiStateCheckbox_MouseDown void

Открытые методы

Метод Описание
IsPointInCheckBox ( Point point ) : bool

Returns true/false if given point is within the bounds of the checkbox rectangle.

IsPointInCheckBox ( int x, int y ) : bool

Returns true/false if given coordinates are within the bounds of the checkbox rectangle.

MultiStateCheckbox ( ) : System

Default constructor

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnPaint ( PaintEventArgs e ) : void

Приватные методы

Метод Описание
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

MultiStateCheckbox_MouseDown ( object sender, MouseEventArgs e ) : void

Описание методов

Dispose() защищенный метод

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
Результат void

IsPointInCheckBox() публичный метод

Returns true/false if given point is within the bounds of the checkbox rectangle.
public IsPointInCheckBox ( Point point ) : bool
point Point Point to check
Результат bool

IsPointInCheckBox() публичный метод

Returns true/false if given coordinates are within the bounds of the checkbox rectangle.
public IsPointInCheckBox ( int x, int y ) : bool
x int X value to check
y int Y value to check
Результат bool

MultiStateCheckbox() публичный метод

Default constructor
public MultiStateCheckbox ( ) : System
Результат System

OnPaint() защищенный метод

protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs
Результат void