1
向datagridview中添加按钮的方法很简单。首先,选中datagridview控件,点击右键,选择“编辑列”。
2
在d出的“编辑列”窗体中选择“添加”按钮。
3
在“添加列”的窗体中,输入名称、页面文本,注意类型选择“DataGridViewButtonColumn”选项,然后点击“确定“,按钮列就添加成功了。
4
现在的问题是,按钮列的文本是空的,而我们希望它显示的文本是审核。
代码如下:#region 为复合控件添加事件 //声明复合控件的事件 public event DataGridViewCellEventHandler CellClick//委托处理的事件代码 protected virtual void OnCellClick(DataGridViewCellEventArgs e) { DataGridViewCellEventHandler dg = CellClick//如果事件不为空 if (dg != null) { dg(dataGV, e)//调用事件 } } #endregion #region 复合函数的构造函数 /// <summary>/// 构造函数 /// </summary>public UserDataGridView() { InitializeComponent()//为CellClick事件绑定一个委托事件 dataGV.CellClick += delegate(object sender, DataGridViewCellEventArgs e) { OnCellClick(e)}} #endregion 在自定义控件中这样声明以后就可以直接在使用的地方为其写CellClick事件代码了。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)