我有一个检查列表,当程序加载时,我需要将字符串和布尔值列表加载到检查列表框中。但是在设置布尔值的同时
checkedListBoxControl1.SetItemChecked(i, checkedList[i]);;
-EventcheckedListBoxControl1_ItemCheck
触发。我不希望这样,因为当它触发时,它会刷新我的数据库并且需要很长时间才能完成。我只希望它在用户更改选中列表检查状态时触发。
注意:我有
目前我正在使用 A 标志来做到这一点,它很丑,在这里给我带来了很多其他问题
private void checkedListBoxControl1_ItemCheck(object sender, DevExpress.XtraEditors.Controls.ItemCheckEventArgs e) //fires second on check
{
int index = e.Index;
bool isChecked = e.State == CheckState.Checked;
this.mediaCenter.ItemManager.SetDirectoryCheck(index, isChecked);
if (this.IsUserClick)
BuildDatabaseAsync();
this.IsUserClick = false;
}
private bool IsUserClick;
private void checkedListBoxControl1_Click(object sender, EventArgs e) //Fires first on check
{
if (checkedListBoxControl1.SelectedItem == null) return;
IsUserClick = true;
}
可能是我填充列表框控件的方法首先很奇怪。但是由于沿途有很多不必要的变化。我这样做如下
private void BuildCheckListControl(string[] dirs)
{
IsUserClick = false;
this.checkedListBoxControl1.DataSource = dirs;
for (int i = 0; i < dirs.Length; i++)
checkedListBoxControl1.SetItemChecked(i, checkedList[i]);
}
checkedList[]
包含对应于 dirs 数组的布尔数组