如何通过 BLToolkit 设置枚举字段的显示名称?
我有一个这样的枚举:
public enum Mode
{
[*"I need a display name attribute to show in combobox"*]
Active,
[*"I need a display name attribute to show in combobox"*]
DeActive
}
我想将它用作组合框中的数据源,并且我需要设置显示名称。 有人可以帮助我吗?
i have a enum like that :
public enum Mode
{
[*"I need a display name attribute to show in combobox"*]
Active,
[*"I need a display name attribute to show in combobox"*]
DeActive
}
I want to use it as a dataSource in a comboBox and i need to set display name.
Anyone can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是 BLT 交易...
我的解决方案是:
Test.cs
Caption.cs
LocalizedEnumConverter.cs
it is not the BLT deal...
my solution was:
Test.cs
Caption.cs
LocalizedEnumConverter.cs