我如何取消选中 DevExpress Gridview 的复选框?

发布于 2024-09-11 23:35:56 字数 98 浏览 6 评论 0原文

我如何取消选中 DevExpress Gridview 的复选框?我有一个带有复选框的网格视图。我需要取消选中所有 gridview 复选框。我怎样才能做到这一点?

how can i uncheck DevExpress Gridview 's checkbox ? i have a gridview with checkboxes. i need to uncheck all gridview Checkbox. How can i do that?

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

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

发布评论

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

评论(1

小伙你站住 2024-09-18 23:35:56

您可以使用具有 bool 属性的对象列表来绑定到复选框列。

列定义:
this.gvCheck.ColumnEdit = this.repositoryItemCheckEdit1;
this.gvCheck.FieldName = "EstaSeleccionada";
this.gvCheck.Name = "gvCheck";
this.gvCheck.Visible = true;
this.gvCheck.VisibleIndex = 0;
this.gvCheck.Width = 51;

物业用途:
seniales.ForEach(s => s.EstaSeleccionada = true/false);
gcSeniales.DataSource = new List();
gcSeniales.DataSource = seniales;
gcSeniales.Update();

You can use a list of object with a bool property to bind to the checkbox column.

Column definition :
this.gvCheck.ColumnEdit = this.repositoryItemCheckEdit1;
this.gvCheck.FieldName = "EstaSeleccionada";
this.gvCheck.Name = "gvCheck";
this.gvCheck.Visible = true;
this.gvCheck.VisibleIndex = 0;
this.gvCheck.Width = 51;

Property use:
seniales.ForEach(s => s.EstaSeleccionada = true/false);
gcSeniales.DataSource = new List();
gcSeniales.DataSource = seniales;
gcSeniales.Update();

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