要調用ChecklistBox控件,首先需要在C#中創建一個ChecklistBox對象,并將其添加到窗體或其他容器中。可以使用以下代碼調用ChecklistBox控件:
ChecklistBox checklistBox = new ChecklistBox();
checklistBox.Location = new Point(10, 10);
checklistBox.Size = new Size(200, 200);
checklistBox.Visible = true;
this.Controls.Add(checklistBox);
checklistBox.Items.Add("Item 1");
checklistBox.Items.Add("Item 2");
checklistBox.Items.Add("Item 3");
int selectedIndex = checklistBox.SelectedIndex;
string selectedText = checklistBox.SelectedItem.ToString();
checklistBox.SetItemChecked(0, true); // 設置第一個項為選中狀態
checklistBox.ItemCheck += ChecklistBox_ItemCheck;
private void ChecklistBox_ItemCheck(object sender, ItemCheckEventArgs e)
{
// 處理項選中狀態改變事件
}
以上是ChecklistBox控件的基本使用方法,根據實際需求可以做進一步的擴展和調整。