在 Dev Express 中从 Gridview 获取行?
如何从 DevExpress 中的 Gridview 控件获取行?
How do I get a Row from a Gridview control in DevExpress?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 DevExpress 中的 Gridview 控件获取行?
How do I get a Row from a Gridview control in DevExpress?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我为你做了一些挖掘,看起来像 这是最好的方法。
I did some digging for you, and it seems like this is the best way to do it.
你想达到什么目的?
您想获取显示为网格行的对象实例吗?
如果是这样,请尝试 GridView.GetRow() 方法。
What are you trying to achieve?
Do you want to get instance of object displayed as grid row?
If so, try GridView.GetRow() method.
如果你不想做 przemaas 所说的事情,那么就对你绑定的对象进行操作(因为实际上,这就是 xtragrid 的全部内容)。如果您要绑定到 xpcollection(T),则对其中的记录执行的任何操作都将通过 xpcollection 上的 PropertyChanged 事件传播到网格。
如果您要绑定到自定义集合,则只需从 IBindingList 继承它和/或实现 INotifyPropertyChanged。
if you're not trying to do what przemaas has to say, then operate on the object that you're binding to (cause really, that's what the xtragrid is all about). If it's an xpcollection(T) that you're binding to, then any operations done on the records within it will propagate to the grid through the PropertyChanged event on the xpcollection.
If you're binding to a custom collection, then just inherit it from IBindingList and/or implement INotifyPropertyChanged.