여러개의 항목을 선택 및 해제 할 수 있는 CheckedListBoxItem컨트롤을 추가하는 방법 입니다.
CheckedListBoxItem[] items = {
new CheckedListBoxItem("January", false),
new CheckedListBoxItem("February", false),
new CheckedListBoxItem("March", true),
new CheckedListBoxItem("April", false),
new CheckedListBoxItem("May", false),
new CheckedListBoxItem("June", true),
new CheckedListBoxItem("July", true),
new CheckedListBoxItem("August", false),
new CheckedListBoxItem("September", false),
new CheckedListBoxItem("October", false),
new CheckedListBoxItem("November", false),
new CheckedListBoxItem("December", false)
};
CreateCheckedListBoxControl(items);
private void CreateCheckedListBoxControl(CheckedListBoxItem[] items)
{
CheckedListBoxControl checkedListBoxControl = new CheckedListBoxControl();
Controls.Add(checkedListBoxControl);
checkedListBoxControl.Left = 20;
checkedListBoxControl.Top = 20;
checkedListBoxControl.Width = 200;
checkedListBoxControl.Height = 150;
checkedListBoxControl.Items.AddRange(items);
}
728x90
'C# > DevExpress' 카테고리의 다른 글
DevExpress / Winform TextEdit Class TextEdit에 날짜, 시간 값에 서식 적용하기. (0) | 2019.04.17 |
---|---|
DevExpress / Winform GridView에서 마우스 우클릭 시 달력을 출력하기. (1) | 2019.04.16 |
DevExpress / Winform LookUpEdit 컨트롤에서 NULL 값에 텍스트 입력하기. (0) | 2019.04.15 |
DevExpress / Winform LookUpEdit 컨트롤 추가하기. (0) | 2019.04.15 |
DevExpress / Winform CheckEdit 컨트롤에서 Indeterminate 값 추가하기. (0) | 2019.04.14 |
댓글