在单选按钮内显示枚举,winforms

时间:2013-07-17 17:36:24

标签: c# .net winforms

我有枚举数据类型

public enum UserChoices { Basic = 0, Lite = 1, Standard = 2 };

如何在winforms单选按钮选项中使用此枚举属性?

1 个答案:

答案 0 :(得分:3)

使用以下代码获取数组中的名称和值。

string[] names = Enum.GetNames(typeof(MyEnum));
MyEnum[] values = (MyEnum[])Enum.GetValues(typeof(MyEnum));

现在

for( int i = 0; i < names.Length; i++ )
{
    //Add this item to radio button list
    //names[i] will be going to text
    //values[i] will be going to value
}

欢迎查询!