如何将枚举绑定到组合框
我需要将枚举绑定到组合框,但是我不需要所有值
this.combobox.DataSource = Enum.GetValues(typeof(RoleUser));
public enum RoleUser { Guest = 0, Student = 1, Instructor, Administrator };
这是怎么做的?
不要使用 linq
I need bind enum to combobox, but I need not all values
this.combobox.DataSource = Enum.GetValues(typeof(RoleUser));
public enum RoleUser { Guest = 0, Student = 1, Instructor, Administrator };
How do this?
Don't use linq
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
例外
< /a> LINQ 扩展方法:You can use the
Except
LINQ extension method for this:不使用 linq,您可以将从 Getvalues 返回的值放入数组并对其进行迭代以过滤数组,然后将新创建的数组分配给数据源
With out using linq,you can put the returned value from Getvalues to an array and iterate on it to filter array then assign new created array to datasource