如何在DataGridTextColumn中显示Enum类型?
我已经列出了列表,并将这些列表绑定到工作正常的数据网格,但在该规则类中,我有一个枚举类型,即“类型”,因此在数据网格中,我将类型列设置为空,那么我如何获得枚举输入数据网格列请帮助我。
谢谢, @nagaraju。
I've List and i bind these list to datagrid that is working fine, but in that Rule class i've one enum type Which is "Type" so in the datagrid i'm getting Type column as empty so how can i get enum type in datagrid column plz help me.
Thanks,
@nagaraju.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常它应该通过绑定直接转换为它的字符串表示...但如果不是,您可以编写一个值转换器
您可以按如下方式使用转换器
我认为这就是您所缺少的...您需要制作一个静态资源那个名字的
Usually its should be converted to Its String repersentation directly by binding... but if not the you can write a Value Converter
You can use the the Converter as follows
I think thats you are missing.... you need to make a Static resource of that name
声明类如:
在 xaml 中使用转换器作为..
绑定如..
这对我有用..
@nagaraju。
Declare class like:
use converter in xaml as..
Binding like..
Thats worked for me..
@nagaraju.