Infragistics 中的复选框列赢得 ultragrid
我是基础设施的新手。 在我的 winforms 应用程序上,我使用 Ultrawingrid 来显示数据库中的数据。
如何将复选框列显示为网格中的第一列? 另外,我需要捕获选中/取消选中事件,然后读取应用程序中相应的网格行/单元格。
你能帮我解决这个问题吗?
感谢您的阅读。
Am a newbie to Infragistics.
On my winforms app, am using Ultrawingrid to display data from database.
How do I show a checkbox column as the first column in the grid?
Also, I need to capture check/uncheck event and then read the corresponding grid row/cells in the application.
Could you please help me on this?
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要获取要呈现为复选框的列的 UltraGridColumn 实例。类似于:
然后将列的显示样式更改为复选框并确保它允许编辑:
在我看来,将此网格初始化代码放在表单的 Load 事件或网格的 InitializeLayout 事件的处理程序中是合适的。
处理网格的 CellChange 事件以查看用户何时更改复选框值:
根据要求,这里是示例代码,演示了添加未绑定列、将其移动到最左边的位置、处理单元格更改事件以及从网格中检索附加值。
You need to get a hold of the UltraGridColumn instance for the column you want rendered as a checkbox. Something like:
Then change the column's display style to checkbox and make sure it allows edits:
In my opinion, it's appropriate to have this grid initialization code in a handler for the form's Load event or the grid's InitializeLayout event.
Handle the grid's CellChange event to see when the user changes the checkbox value:
As requested, here is sample code that demonstrates adding an unbound column, moving it to the leftmost position, handling the cell change event, and retrieving an additional value from the grid.
为什么不确保你的数据层返回 Bool,Infragistics 网格会自动(自动生成)它的复选框
why not make sure your data layer returns Bool, Infragistics grid will automatically (auto generate) Check Box for it