前些天,在.Net技术的论坛里面看到了有个帖子,我好像记得是怎么实现WinForm中类似WebForm中的CheckBoxList控件,我简单的实现了那样的一个控件
首先,你得建立一个控件项目,假如说是:
接着,你就添加一个类:CheckBoxCollection,它是个CheckBox的集合类
具体的代码如下
CheckBoxCollection.cs
using System;
using System.Collections;
using System.Windows.Forms;
namespace CheckListControl
{
///
/// CheckBox的集合类
///
public class CheckBoxCollection:System.Collections.CollectionBase
{
public CheckBoxCollection()
{
IList pIList=base.List;
}
public CheckBox this[int index]
{
get
{
return (CheckBox) List[index];
}
}
public CheckBox Add(CheckBox obj)
{
base.List.Add(obj);
return obj;
}
public void Remove(CheckBox obj)
{
base.List.Remove(obj);
}
}
}
然后,在CheckBoxList.cs文件中,定义全局变量
private CheckBoxCollection objCbc=new CheckBoxCollection();
public event System.EventHandler CheckedChanged;
写自定义函数,外部接口
///
/// 新增一个CheckBox到控件
///
///
public CheckBox NewCheckBox()
{
lab.Visible=false;
CheckBox cb=new CheckBox();
cb.Name=GetName();
cb.Text=cb.Name;
// cb.Size=new Size(120,24);
cb.Checked=false;
cb.Visible=true;
cb.CheckedChanged+=new EventHandler(CheckBox_CheckedChanged);//定义CheckedChanged事件,来捕捉它的事件
int y=0;
y=objCbc.Count * 24 + objCbc.Count * 8 + 12;//形成CheckBox的纵坐标
cb.Location=new Point(12,y);
objCbc.Add(cb);
this.Controls.Add(cb);//添加CheckBox到控件
int x=GetMaxWidth();//得到已经添加的CheckBox中的最大的宽度
if(cb.Width >x )//如果现在添加的CheckBox的最大宽度大于已经添加的最大宽度,替换调x
{
x = cb.Width + 24;
}
this.Size=new Size(x ,y +12+24);//根据添加的CheckBox改变控件的大小
return cb;
}
///
/// 自动形成新添加CheckBox的名称
///
///
private string GetName()
{
if(objCbc.Count>0)
{
ArrayList list=new ArrayList();
for(int i=0;i { if(objCbc[i].Name.Trim().Length==9) { string str=objCbc[i].Name.Trim(); if(str.Substring(0,8).ToLower()=="checkbox" && IsNumber(str.Substring(str.Length-1,1))) { list.Add(str.Substring(str.Length-1,1)); } } } if(list.Count>0) { return "checkBox" + Convert.ToString(int.Parse(list[list.Count-1].ToString().Trim()) + 1); } } return "checkBox1"; } /// /// 判断是否是阿拉伯数字 /// /// /// private bool IsNumber(string strCompare) { string strWord="0123456789"; foreach(char chr in strWord) { if(strCompare==chr.ToString()) { return true; } } return false; } /// /// 得到已经添加CheckBox中的最大宽度 /// /// private int GetMaxWidth() { int maxWidth=0; if(objCbc.Count>0) { for(int i=0;i { CheckBox cb=(CheckBox)objCbc[i]; if(cb.Width>maxWidth) { maxWidth=cb.Width; } } } return maxWidth; } // [Browsable(true), Description("得到CheckBox集合"), Category("CheckList")] // public CheckBoxCollection CheckList // { // get // { // return objCbc; // } // } private void CheckBox_CheckedChanged(object sender, EventArgs e) { CheckedChanged(sender,new EventArgs()); } 编译以后,就可以得到CheckListControl.dll; 添加新项目用于类的测试 在工具箱中->添加/移除项,把CheckListControl添加进来,然后拖CheckListControl到Form1中 form1.cs中 private void Form1_Load(object sender, System.EventArgs e) { CheckBox cb=checkBoxList1.NewCheckBox(); cb.Name="chkFirst"; cb.Text="第一个CheckBox"; cb.Size=new Size(125,24); cb=checkBoxList1.NewCheckBox(); cb.Name="chkSecond"; cb.Text="第二个CheckBox"; cb.Size=new Size(125,24); } private void checkBoxList1_CheckedChanged(object sender, System.EventArgs e) { CheckBox cb=(CheckBox)sender; MessageBox.Show("Name: " + cb.Name + " Text: " +cb.Text); } 具体的就这样 其实,只是作了简单的一个CheckBoxList,具体很多还有其它的功能没有加上,希望网友指正,添加更多功能

