使枚举可绑定到 datagridview
我有一个对象,其中包含许多字符串属性和一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用:
This works for me: