在 Dev Express 中从 Gridview 获取行?

发布于 2024-08-03 09:38:16 字数 40 浏览 4 评论 0原文

如何从 DevExpress 中的 Gridview 控件获取行?

How do I get a Row from a Gridview control in DevExpress?

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

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

发布评论

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

评论(3

眸中客 2024-08-10 09:38:16

我为你做了一些挖掘,看起来像 这是最好的方法。

I did some digging for you, and it seems like this is the best way to do it.

生活了然无味 2024-08-10 09:38:16

你想达到什么目的?
您想获取显示为网格行的对象实例吗?
如果是这样,请尝试 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.

驱逐舰岛风号 2024-08-10 09:38:16

如果你不想做 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.

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