• EnumHelper枚举常用操作类


    在项目中需要把枚举填充到下拉框中,所以使用统一的方法实现,测试代码如下:

    namespace CutPictureTest.Comm
    {
    
        public class EnumHelper
        {
    
            public static System.Collections.ArrayList GetName(Type enumType)
            {
                System.Collections.ArrayList arr = new System.Collections.ArrayList();
                string[] n = System.Enum.GetNames(enumType);
                foreach (string item in n)
                    arr.Add(item);
                return arr;
    
            }
    
            public static T ToEnum<T>(string strEnum)
            {
                T t = (T)Enum.Parse(typeof(T), strEnum);
                return t;
            }
    
            public static System.Collections.Hashtable EnumToHashtable(Type enumType)
            {
                System.Collections.Hashtable ht = new System.Collections.Hashtable();
                Array arr = System.Enum.GetValues(enumType);
                for (int i = 0; i < arr.Length; i++)
                    ht.Add(Convert.ToInt16(arr.GetValue(i)), arr.GetValue(i).ToString());
                return ht;
            }
        }
    }

    调用方式:

    System.Collections.Hashtable arr = Comm.EnumHelper.EnumToHashtable(typeof(tImageFormat));
                foreach (string item in arr.Values)
                    cb.Items.Add(item);

    其中的cb表示ComboBox对象,你可以替换成你的下拉框对象。

  • 相关阅读:
    java10 var
    java lambda,方法引用
    Java集合总结
    Oracle/Sun JDK与OpenJDK的区别和联系
    IO基本知识
    字符串反转2单词内部不进行转换
    反转String 1
    java 左移<<&>>右移&>>无符号右移
    反射
    equals方法与hashcode方法
  • 原文地址:https://www.cnblogs.com/mq0036/p/6084262.html
Copyright © 2020-2023  润新知