区分用户检查和编程检查

时间:2013-09-27 06:33:28

标签: c# winforms devexpress

我有一个检查列表,当程序加载时,我需要将一个字符串和布尔列表加载到清单框中。但是在设置布尔值的同时

   checkedListBoxControl1.SetItemChecked(i, checkedList[i]);; 

checkedListBoxControl1_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数组的布尔数组

2 个答案:

答案 0 :(得分:0)

您可以在初始化期间将bool变量(类成员而非本地变量)指定为false。在ItemCheck事件中检查bool变量并决定继续进行数据库检查。初始化完成后,将bool变量设置为true。

答案 1 :(得分:0)

如果您不想创建布尔值,那么您可以检查(如评论中所述)删除/添加事件处理程序,如果您更改BuildCheckListControl - 方法如下:

private void BuildCheckListControl(string[] dirs) 
{
   checkedListBoxControl1.ItemCheck -= checkedListBoxControl1_ItemCheck; //Will remove your Eventhandler

   //IsUserClick = false; //You shouldn't need that anymore.

   this.checkedListBoxControl1.DataSource = dirs;

   for (int i = 0; i < dirs.Length; i++)
           checkedListBoxControl1.SetItemChecked(i, checkedList[i]);

   checkedListBoxControl1.ItemCheck += checkedListBoxControl1_ItemCheck; //Will add your Eventhandler again
}