/// 清理所有正在使用的資源。
///
protected override void dispose( bool disposing )
}base.dispose( disposing );
}#region windows 窗體設計器生成的**
///
/// 設計器支援所需的方法 - 不要使用**編輯器修改
/// 此方法的內容。
///
p rivate void initializecomponent()
);this.checkedlistbox1.location = new system.drawing.point(8, 24);
this.checkedlistbox1.multicolumn = true;
this.checkedlistbox1.name = "checkedlistbox1";
this.checkedlistbox1.size = new system.drawing.size(312, 100);
this.checkedlistbox1.tabindex = 0;
// // form1
// this.autoscalebasesize = new system.drawing.size(6, 14);
this.clientsize = new system.drawing.size(332, 158);
this.controls.add(this.button2);
this.controls.add(this.button1);
this.controls.add(this.label1);
this.controls.add(this.checkedlistbox1);
this.location = new system.drawing.point(1800, 300);
this.maximizebox = false;
this.name = "form1";
this.startposition = system.windows.forms.formstartposition.centerscreen;
this.text = "演示多選列表框控制項";
this.resumelayout(false);
}#endregion
///
/// 應用程式的主入口點。
///
p rivate void button2_click(object sender, system.eventargs e)
p rivate void button1_click(object sender, system.eventargs e)
}
Dev的GridControl控制項選擇框的使用
先介紹環境 vs2010,dev11.2 想要達到的效果 在網上找了不少,但是感覺跟我想的做法很不一樣 有很多都是再另外新增乙個什麼checkbox,這個我在dev裡是沒有找到 下面介紹我的做法 第一步 進入 run designer 新增三列,主要講述一下第一列 判斷列 的屬性設定,這用了dev的...
update多列的幾種選擇
當 update 多列 時有如下幾種選擇 1.教科書式寫法 update t table a set f1 select f1 from testz b where a.id b.id f2 select f2 from testz b where a.id b.id f3 select f3 fr...
帶選擇框的JS樹控制項
前陣子自己寫了個帶選擇框的tree控制項,雖然還有一些bug沒有修改 動態新增節點 但是感覺載入速度還可以。子節點檢索的方法參考了mztree,測試了一下發現用正則去查詢子節點的確比迴圈快了不少。節點有三種狀態,選中,未選中,未完全選中。雖然引了乙個jquery.js 但其實jquery只是用來在離...