我綁定的enum
到屬性網格是這樣的:轉換字符串數組來枚舉在飛行
public enum myEnum
{
Ethernet,
Wireless,
Bluetooth
}
public class MyClass
{
public MyClass()
{
MyProperty = MyEnum.Wireless;
}
[DefaultValue(MyEnum.Wireless)]
public MyEnum MyProperty { get; set; }
}
public Form1()
{
InitializeComponent();
PropertyGrid pg = new PropertyGrid();
pg.SelectedObject = new MyClass();
pg.Dock = DockStyle.Fill;
this.Controls.Add(pg);
}
我的問題:我得到的飛行數據的程序運行時。我讀到這樣的網絡適配器,然後儲存適配器名myArray
:
string[] myArray = new string[] { };
myArray[0] = "Ethernet";
myArray[1] = "Wireless";
myArray[2] = "Bluetooth";
可轉換myArray
到myEnum
使用C#飛?謝謝。
您正在分配myArray []值不正確爲什麼你難以編碼枚舉值..? – MethodMan