单击 DataGridViewColumnButton 时如何隐藏 DataGridView 的行?

发布于 2024-11-28 16:37:00 字数 149 浏览 1 评论 0原文

我已将 DataTable 添加到 WinForms SystemTray 应用程序中的 DataGridView 中。我每行都有两个按钮,例如“公共”和“忽略”。当我单击两个按钮中的任何一个时,按钮具有相同索引的特定行必须被隐藏。

I have added a DataTable to the DataGridView in WinForms SystemTray App. I have two buttons in each row, like "public" and "Ignore". When I click any of the two buttons the particular row which the buttons have the same index must be hidden.

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

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

发布评论

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

评论(1

ま柒月 2024-12-05 16:37:00

如果要隐藏用户单击按钮的 DataGridViewRow,请使用 DataGridView 的 CellClick 事件,如下所示:

private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) {
    // After you've verified that the column clicked contains the button you want to use to hide rows...

    CurrencyManager currencyManager1 = (CurrencyManager)BindingContext[dataGridView1.DataSource];
    currencyManager1.SuspendBinding();

    dataGridView1.Rows[e.RowIndex].Visible = false;

    currencyManager1.ResumeBinding();
}

请注意,您需要暂停数据绑定以设置该行的 Visible属性为 false。

要显示隐藏的所有行,请重新绑定 DataGridView:

dataGridView1.DataSource = null;         
dataGridView1.DataSource = yourDataTable;

If you want to hide the DataGridViewRow in which a user clicked a button use the DataGridView's CellClick event, like this:

private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) {
    // After you've verified that the column clicked contains the button you want to use to hide rows...

    CurrencyManager currencyManager1 = (CurrencyManager)BindingContext[dataGridView1.DataSource];
    currencyManager1.SuspendBinding();

    dataGridView1.Rows[e.RowIndex].Visible = false;

    currencyManager1.ResumeBinding();
}

Notice that you need to suspend data binding to set the row's Visible property to false.

To display all the rows you've hidden rebind your DataGridView:

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