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

Показать файл Открыть проект

Private Properties

Свойство Тип Описание
InitializeComponent void
buttonAll_Click void
buttonNone_Click void
checkedList_ItemCheck void

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

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

Maintains performance while items are added to the control's CheckedListBox one at a time by preventing painting until EndUpdate() is called.

CheckAll ( bool checkState ) : void

Sets all checkboxes to the given state

CheckGroupBox ( ) : System

Default constructor

CheckGroupBox ( IContainer container ) : System

Constructor with arguments

EndUpdate ( ) : void

Resumes painting of the control's CheckedListBox after painting is suspended from calling BeginUpdate().

GetItemChecked ( int index ) : bool

Gets the state of a checkbox

SetItemChecked ( int index, bool checkState ) : void

Sets a checkbox to the given state

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

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

Clean up any resources being used.

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

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

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

buttonAll_Click ( object sender, EventArgs e ) : void
buttonNone_Click ( object sender, EventArgs e ) : void
checkedList_ItemCheck ( object sender, ItemCheckEventArgs e ) : void

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

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

Maintains performance while items are added to the control's CheckedListBox one at a time by preventing painting until EndUpdate() is called.
public BeginUpdate ( ) : void
Результат void

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

Sets all checkboxes to the given state
public CheckAll ( bool checkState ) : void
checkState bool State to set the checkboxes
Результат void

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

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

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

Constructor with arguments
public CheckGroupBox ( IContainer container ) : System
container IContainer Container for components
Результат System

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

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

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

Resumes painting of the control's CheckedListBox after painting is suspended from calling BeginUpdate().
public EndUpdate ( ) : void
Результат void

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

Gets the state of a checkbox
public GetItemChecked ( int index ) : bool
index int Index of the checkbox
Результат bool

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

Sets a checkbox to the given state
public SetItemChecked ( int index, bool checkState ) : void
index int Index of the checkbox
checkState bool State to set checkbox
Результат void