asddasd

导航

c# ComboBox绑定枚举

原:https://www.cnblogs.com/lyh523329053/p/8418719.html

 

 

定义枚举

复制代码
        public enum UserLevel
        {          
            Commmon = 0,
            Administrator,
            Developer
        }
复制代码

方法一

复制代码
        private void Method1()
        {
            comboBox1.DataSource = System.Enum.GetNames(typeof(UserLevel));
            comboBox1.SelectedIndex = 
             comboBox1.FindString(UserLevel.Commmon.ToString()); }
复制代码

方法二

复制代码
        private void Method2()
        {
            foreach (var v in typeof(UserLevel).GetFields())
            {
                if (v.FieldType.IsEnum == true)
                {
                    this.comboBox2.Items.Add(v.Name);
                }
            }
            this.comboBox2.SelectedIndex = 1;
        }
复制代码

取值

            
            UserLevel testenum = (UserLevel)Enum.Parse(typeof(UserLevel), comboBox1.SelectedItem.ToString(), false);
        

 

posted on 2021-06-29 16:34  asddasd  阅读(139)  评论(0编辑  收藏  举报