Winforms。 ObjectDataSource添加计算列

发布于 2024-09-13 07:23:00 字数 336 浏览 4 评论 0原文

我使用 ObjectDataSource 并将 IEnumerable[Person] 绑定到我的 DevExpress GridView

class Person
{
   private int Id {get; set;}
   public string Name {get; set;}
}

在网格中有两列 Id,Name。我想要新列“Sum”,它是按人员对象计算的(按人员聚合)。在 asp.net 中,我创建新列并在 RowDataBound 事件中计算其值。在 winforms 中我没有看到这个事件和其他 appr。那么这种情况我该怎么办呢。我在哪里可以处理绑定时刻?谢谢

I use ObjectDataSource and bind IEnumerable[Person] to my DevExpress GridView

class Person
{
   private int Id {get; set;}
   public string Name {get; set;}
}

At grid there are two columns Id,Name. I want new column "Sum", which is calculated by person object(aggragate by person). At asp.net I create new column and calculate its value at RowDataBound event. At winforms I don't see this event and other appr. So what should I do in this case. Where can I handle binding moment? Thanks

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

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

发布评论

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

评论(1

是你 2024-09-20 07:23:00

您应该在 GridView 中创建一个 未绑定列,然后使用 CustomUnboundColumnData 事件。

You should make an unbound column in your GridView, then calculate its value using the CustomUnboundColumnData event.

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