C# winform checkboxlist 插件新增和修改實現動態加載多選值

最近研究這個插件浪費了幾個小時時間:記錄下,分享給有須要的人。記得關注我。this

系統裏面記錄多選的拼接字符串儲存。插件

 

1.新增:3d

           

             //添加checklist到數據中
            string checkedText = string.Empty;orm

            //循環勾選值,只拼接勾選值。  空值不拼接,非空值以逗號隔開。
            for (int i = 0; i < this.ckl_factory.Items.Count; i++)
            {
                if (this.ckl_factory.GetItemChecked(i))
                    checkedText += (String.IsNullOrEmpty(checkedText) ? "" : ",") + this.ckl_factory.GetItemText(this.ckl_factory.Items[i]);
            }blog

2.加載,實現修改界面加載多選值字符串

            

            //服務工廠
            string[] factory_list = edit_supplier.factory_name.Split(',');同步

            //加載checklist數據,加載已選擇的數據爲checked狀態
            string checkedText = string.Empty;
            for (int i = 0; i < factory_list.Length; i++)
            {
                for (int j = 0; j < this.ckl_factory.Items.Count; j++)
                {
                    checkedText = this.ckl_factory.GetItemText(this.ckl_factory.Items[j]);
                    if (factory_list[i]==checkedText)
                    {
                        this.ckl_factory.SetItemChecked(j, true);string

                    }
                }
            }it

3.修改功能跟新增保持一致form

//添加checklist到數據中
            string checkedText = string.Empty;
            for (int i = 0; i < this.ckl_factory.Items.Count; i++)
            {
                if(this.ckl_factory.GetItemChecked(i))
                    checkedText += (String.IsNullOrEmpty(checkedText) ? "" : ",") + this.ckl_factory.GetItemText(this.ckl_factory.Items[i]);
            }

4.同步到gridview

 this.main_form_gridview.SetFocusedRowCellValue("factory_name", edit_supplier.factory_name);

有問題請諮詢我。

相關文章
相關標籤/搜索