C# 클래스 ARCed.Controls.CheckGroupBox

파일 보기 프로젝트 열기: borisblizzard/arcreator

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