使枚举可绑定到 datagridview

发布于 2024-08-14 17:54:10 字数 242 浏览 4 评论 0原文

我有一个对象,其中包含许多字符串属性和一个名为 CRAction 的枚举属性。

我有另一个对象,它代表上述对象的集合。

当我将集合对象绑定到 gridview 之类的东西时,所有字符串属性都绑定得很好,但枚举没有出现。

我添加了另一个返回 CRAction.ToString 的字符串属性,但是有没有更好的方法可以使枚举作为对象的一部分绑定到控件?

纯粹为了数据绑定而为同一事物拥有另一个属性似乎有点黑客!

I have an object which contains a number of string properties and an enum property called CRAction.

I have another object which represents a collection of the above object.

When I bind the collection object to something like a gridview, all of the string properties bind fine, but the enum doesn't appear.

I have added another string property which returns CRAction.ToString, but is there a better way to make an enum bindable to a control as part of an object?

It all seems a little hackish to have another property for the same thing purely for data binding!

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

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

发布评论

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

评论(1

油饼 2024-08-21 17:54:10

这对我有用:

<asp:Label> <%# DataBinder.Eval(Container.DataItem, "CRAction") %></asp:Label>

This works for me:

<asp:Label> <%# DataBinder.Eval(Container.DataItem, "CRAction") %></asp:Label>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文