向数据网格列按钮添加操作的最佳方法是什么?

发布于 2024-12-12 05:43:23 字数 146 浏览 0 评论 0原文

您好,我有一个 Windows 窗体应用程序,并且有一个数据网格,最后一列是按钮列。我读过,为了能够回答单击事件,我必须使用“cellClick”事件处理程序,但是当我使用它时,无论单击按钮还是单击角落的单元格,事件都会触发。那么有没有更好的方法以及如何实现。提前感谢您的帮助。

Hi there i have a windows form application and i have a datagrid with last column beign a button column. I have read that to be able to answer to the click event i have to use "cellClick" event handler but when i use this the event triggers no matter is the button clicked or is the cell clicked in the corner. So is there a better way to this and how. Thanks for your help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

四叶草在未来唯美盛开 2024-12-19 05:43:23

我假设您正在使用 datagrid 视图,那么这就是解决方案

这是您需要捕获按钮单击事件的 DataGridView 处理程序。

this.dgvList.CellContentClick += new DataGridViewCellEventHandler(DGV_CellContentClick);

这是按钮单击处理程序示例,

public void DGV_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    int selectedRowIndex = int.Parse(e.RowIndex.ToString());

    if (this.dgvList.Columns[e.ColumnIndex] == buttonColumn && selectedRowIndex >= 0)
    {
        //do what ever you want
       // DataRow dr = DataGridViewHelper.GetDataRow(this.dgvList);
        //MessageBox.Show((string)dr["FirstName"]);
    }
}

我希望它能帮助您......

I am assuming that you are using datagrid view then this the solution

This is the DataGridView handler you need to capture the button click event.

this.dgvList.CellContentClick += new DataGridViewCellEventHandler(DGV_CellContentClick);

This is the button click handler example

public void DGV_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    int selectedRowIndex = int.Parse(e.RowIndex.ToString());

    if (this.dgvList.Columns[e.ColumnIndex] == buttonColumn && selectedRowIndex >= 0)
    {
        //do what ever you want
       // DataRow dr = DataGridViewHelper.GetDataRow(this.dgvList);
        //MessageBox.Show((string)dr["FirstName"]);
    }
}

i hope it will helps you....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文