重複の可能性:
C#:列挙型を列挙する方法は?
主題はすべてを言います。それを使用して、コンボボックスに列挙型の値を追加したいと考えています。
ありがとう
バイスバーグ
string[] names = Enum.GetNames (typeof(MyEnum));
次に、ドロップダウンに配列を入力するだけです
他の人がすでに正しい答えで答えていることは知っていますが、コンボボックスで列挙型を使用したい場合は、余分なヤードに移動して文字列を列挙型に関連付けて、詳細を提供できるようにすることができます。表示される文字列(単語間のスペースや、コーディング標準に一致しない大文字と小文字を使用した文字列の表示など)
このブログエントリは役立つ場合があります-文字列とC#の列挙型の関連付け
public enum States
{
California,
[Description("New Mexico")]
NewMexico,
[Description("New York")]
NewYork,
[Description("South Carolina")]
SouthCarolina,
Tennessee,
Washington
}
ボーナスとして、彼はまた、私がJonSkeetのコメントで更新した列挙を列挙するためのユーティリティメソッドを提供しました
public static IEnumerable<T> EnumToList<T>()
where T : struct
{
Type enumType = typeof(T);
// Can't use generic type constraints on value types,
// so have to do check like this
if (enumType.BaseType != typeof(Enum))
throw new ArgumentException("T must be of type System.Enum");
Array enumValArray = Enum.GetValues(enumType);
List<T> enumValList = new List<T>();
foreach (T val in enumValArray)
{
enumValList.Add(val.ToString());
}
return enumValList;
}
Jonはまた、C#3.0では、次のように簡略化できることを指摘しました(これは非常に軽量になっているため、インラインで実行できると思います)。
public static IEnumerable<T> EnumToList<T>()
where T : struct
{
return Enum.GetValues(typeof(T)).Cast<T>();
}
// Using above method
statesComboBox.Items = EnumToList<States>();
// Inline
statesComboBox.Items = Enum.GetValues(typeof(States)).Cast<States>();
Enum.GetValues メソッドを使用します。
foreach (TestEnum en in Enum.GetValues(typeof(TestEnum)))
{
...
}
それらを文字列にキャストする必要はありません。そうすれば、SelectedItem プロパティを TestEnum 値に直接キャストすることによって、それらを取得することができます。
代わりに、 Enum.GetNames メソッドによって返された配列を反復処理できます。
public class GetNamesTest {
enum Colors { Red, Green, Blue, Yellow };
enum Styles { Plaid, Striped, Tartan, Corduroy };
public static void Main() {
Console.WriteLine("The values of the Colors Enum are:");
foreach(string s in Enum.GetNames(typeof(Colors)))
Console.WriteLine(s);
Console.WriteLine();
Console.WriteLine("The values of the Styles Enum are:");
foreach(string s in Enum.GetNames(typeof(Styles)))
Console.WriteLine(s);
}
}
列挙型の値に対応するコンボの値が必要な場合は、次のようなものも使用できます。
foreach (TheEnum value in Enum.GetValues(typeof(TheEnum)))
dropDown.Items.Add(new ListItem(
value.ToString(), ((int)value).ToString()
);
このようにして、ドロップダウンにテキストを表示し、値を取得することができます (SelectedValue プロパティで)
.NET 3.5 では、拡張メソッドを使用することで簡単になります。
enum Color {Red, Green, Blue}
で繰り返すことができます
Enum.GetValues(typeof(Color)).Cast<Color>()
または、新しい静的ジェネリック メソッドを定義します。
static IEnumerable<T> GetValues<T>() {
return Enum.GetValues(typeof(T)).Cast<T>();
}
Enum.GetValues() メソッドで反復するとリフレクションが使用されるため、パフォーマンスが低下することに注意してください。
列挙型を使用してプルダウンを設定する際の問題は、列挙型に奇妙な文字やスペースを含めることができないことです。必要な文字を追加できるように、列挙型を拡張するコードがいくつかあります。
こんな感じで使って..
public enum eCarType
{
[StringValue("Saloon / Sedan")] Saloon = 5,
[StringValue("Coupe")] Coupe = 4,
[StringValue("Estate / Wagon")] Estate = 6,
[StringValue("Hatchback")] Hatchback = 8,
[StringValue("Utility")] Ute = 1,
}
そのようにデータをバインドします..
StringEnum CarTypes = new StringEnum(typeof(eCarTypes));
cmbCarTypes.DataSource = CarTypes.GetGenericListValues();
列挙型を拡張するクラスは次のとおりです。
// Author: Donny V.
// blog: http://donnyvblog.blogspot.com
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
namespace xEnums
{
#region Class StringEnum
/// <summary>
/// Helper class for working with 'extended' enums using <see cref="StringValueAttribute"/> attributes.
/// </summary>
public class StringEnum
{
#region Instance implementation
private Type _enumType;
private static Hashtable _stringValues = new Hashtable();
/// <summary>
/// Creates a new <see cref="StringEnum"/> instance.
/// </summary>
/// <param name="enumType">Enum type.</param>
public StringEnum(Type enumType)
{
if (!enumType.IsEnum)
throw new ArgumentException(String.Format("Supplied type must be an Enum. Type was {0}", enumType.ToString()));
_enumType = enumType;
}
/// <summary>
/// Gets the string value associated with the given enum value.
/// </summary>
/// <param name="valueName">Name of the enum value.</param>
/// <returns>String Value</returns>
public string GetStringValue(string valueName)
{
Enum enumType;
string stringValue = null;
try
{
enumType = (Enum) Enum.Parse(_enumType, valueName);
stringValue = GetStringValue(enumType);
}
catch (Exception) { }//Swallow!
return stringValue;
}
/// <summary>
/// Gets the string values associated with the enum.
/// </summary>
/// <returns>String value array</returns>
public Array GetStringValues()
{
ArrayList values = new ArrayList();
//Look for our string value associated with fields in this enum
foreach (FieldInfo fi in _enumType.GetFields())
{
//Check for our custom attribute
StringValueAttribute[] attrs = fi.GetCustomAttributes(typeof (StringValueAttribute), false) as StringValueAttribute[];
if (attrs.Length > 0)
values.Add(attrs[0].Value);
}
return values.ToArray();
}
/// <summary>
/// Gets the values as a 'bindable' list datasource.
/// </summary>
/// <returns>IList for data binding</returns>
public IList GetListValues()
{
Type underlyingType = Enum.GetUnderlyingType(_enumType);
ArrayList values = new ArrayList();
//List<string> values = new List<string>();
//Look for our string value associated with fields in this enum
foreach (FieldInfo fi in _enumType.GetFields())
{
//Check for our custom attribute
StringValueAttribute[] attrs = fi.GetCustomAttributes(typeof (StringValueAttribute), false) as StringValueAttribute[];
if (attrs.Length > 0)
values.Add(new DictionaryEntry(Convert.ChangeType(Enum.Parse(_enumType, fi.Name), underlyingType), attrs[0].Value));
}
return values;
}
/// <summary>
/// Gets the values as a 'bindable' list<string> datasource.
///This is a newer version of 'GetListValues()'
/// </summary>
/// <returns>IList<string> for data binding</returns>
public IList<string> GetGenericListValues()
{
Type underlyingType = Enum.GetUnderlyingType(_enumType);
List<string> values = new List<string>();
//Look for our string value associated with fields in this enum
foreach (FieldInfo fi in _enumType.GetFields())
{
//Check for our custom attribute
StringValueAttribute[] attrs = fi.GetCustomAttributes(typeof(StringValueAttribute), false) as StringValueAttribute[];
if (attrs.Length > 0)
values.Add(attrs[0].Value);
}
return values;
}
/// <summary>
/// Return the existence of the given string value within the enum.
/// </summary>
/// <param name="stringValue">String value.</param>
/// <returns>Existence of the string value</returns>
public bool IsStringDefined(string stringValue)
{
return Parse(_enumType, stringValue) != null;
}
/// <summary>
/// Return the existence of the given string value within the enum.
/// </summary>
/// <param name="stringValue">String value.</param>
/// <param name="ignoreCase">Denotes whether to conduct a case-insensitive match on the supplied string value</param>
/// <returns>Existence of the string value</returns>
public bool IsStringDefined(string stringValue, bool ignoreCase)
{
return Parse(_enumType, stringValue, ignoreCase) != null;
}
/// <summary>
/// Gets the underlying enum type for this instance.
/// </summary>
/// <value></value>
public Type EnumType
{
get { return _enumType; }
}
#endregion
#region Static implementation
/// <summary>
/// Gets a string value for a particular enum value.
/// </summary>
/// <param name="value">Value.</param>
/// <returns>String Value associated via a <see cref="StringValueAttribute"/> attribute, or null if not found.</returns>
public static string GetStringValue(Enum value)
{
string output = null;
Type type = value.GetType();
if (_stringValues.ContainsKey(value))
output = (_stringValues[value] as StringValueAttribute).Value;
else
{
//Look for our 'StringValueAttribute' in the field's custom attributes
FieldInfo fi = type.GetField(value.ToString());
StringValueAttribute[] attrs = fi.GetCustomAttributes(typeof (StringValueAttribute), false) as StringValueAttribute[];
if (attrs.Length > 0)
{
_stringValues.Add(value, attrs[0]);
output = attrs[0].Value;
}
}
return output;
}
/// <summary>
/// Parses the supplied enum and string value to find an associated enum value (case sensitive).
/// </summary>
/// <param name="type">Type.</param>
/// <param name="stringValue">String value.</param>
/// <returns>Enum value associated with the string value, or null if not found.</returns>
public static object Parse(Type type, string stringValue)
{
return Parse(type, stringValue, false);
}
/// <summary>
/// Parses the supplied enum and string value to find an associated enum value.
/// </summary>
/// <param name="type">Type.</param>
/// <param name="stringValue">String value.</param>
/// <param name="ignoreCase">Denotes whether to conduct a case-insensitive match on the supplied string value</param>
/// <returns>Enum value associated with the string value, or null if not found.</returns>
public static object Parse(Type type, string stringValue, bool ignoreCase)
{
object output = null;
string enumStringValue = null;
if (!type.IsEnum)
throw new ArgumentException(String.Format("Supplied type must be an Enum. Type was {0}", type.ToString()));
//Look for our string value associated with fields in this enum
foreach (FieldInfo fi in type.GetFields())
{
//Check for our custom attribute
StringValueAttribute[] attrs = fi.GetCustomAttributes(typeof (StringValueAttribute), false) as StringValueAttribute[];
if (attrs.Length > 0)
enumStringValue = attrs[0].Value;
//Check for equality then select actual enum value.
if (string.Compare(enumStringValue, stringValue, ignoreCase) == 0)
{
output = Enum.Parse(type, fi.Name);
break;
}
}
return output;
}
/// <summary>
/// Return the existence of the given string value within the enum.
/// </summary>
/// <param name="stringValue">String value.</param>
/// <param name="enumType">Type of enum</param>
/// <returns>Existence of the string value</returns>
public static bool IsStringDefined(Type enumType, string stringValue)
{
return Parse(enumType, stringValue) != null;
}
/// <summary>
/// Return the existence of the given string value within the enum.
/// </summary>
/// <param name="stringValue">String value.</param>
/// <param name="enumType">Type of enum</param>
/// <param name="ignoreCase">Denotes whether to conduct a case-insensitive match on the supplied string value</param>
/// <returns>Existence of the string value</returns>
public static bool IsStringDefined(Type enumType, string stringValue, bool ignoreCase)
{
return Parse(enumType, stringValue, ignoreCase) != null;
}
#endregion
}
#endregion
#region Class StringValueAttribute
/// <summary>
/// Simple attribute class for storing String Values
/// </summary>
public class StringValueAttribute : Attribute
{
private string _value;
/// <summary>
/// Creates a new <see cref="StringValueAttribute"/> instance.
/// </summary>
/// <param name="value">Value.</param>
public StringValueAttribute(string value)
{
_value = value;
}
/// <summary>
/// Gets the value.
/// </summary>
/// <value></value>
public string Value
{
get { return _value; }
}
}
#endregion
}
列挙型内で Min と Max を定義すると便利なことがよくあります。これは常に最初と最後の項目になります。Delphi 構文を使用した非常に簡単な例を次に示します。
procedure TForm1.Button1Click(Sender: TObject);
type
TEmployeeTypes = (etMin, etHourly, etSalary, etContractor, etMax);
var
i : TEmployeeTypes;
begin
for i := etMin to etMax do begin
//do something
end;
end;
もう少し「複雑」(やり過ぎかもしれません) ですが、これら 2 つのメソッドを使用して、データソースとして使用する辞書を返します。最初のものは名前をキーとして返し、2 番目の値はキーとして返します。
public static IDictionary<string, int> ConvertEnumToDictionaryNameFirst<K>() { if (typeof(K).BaseType != typeof(Enum)) { 新しい InvalidCastException() をスローします。 } return Enum.GetValues(typeof(K)).Cast<int>().ToDictionary(currentItem) => Enum.GetName(typeof(K), currentItem)); }
または、あなたができる
public static IDictionary<int, string> ConvertEnumToDictionaryValueFirst<K>() { if (typeof(K).BaseType != typeof(Enum)) { 新しい InvalidCastException() をスローします。 } return Enum.GetNames(typeof(K)).Cast<string>().ToDictionary(currentItem) => (int)Enum.Parse(typeof(K), currentItem)); }
ただし、これは 3.5 を使用していることを前提としています。そうでない場合は、ラムダ式を置き換える必要があります。
使用する:
辞書リスト = ConvertEnumToDictionaryValueFirst<SomeEnum>();
システムを使用する; System.Collections.Generic の使用; System.Linq を使用します。