zoukankan      html  css  js  c++  java
  • 利用反射遍历Enum,并显示在ComboBox上,根据枚举的值,选中在comboBox中指定的项

     1using System;
     2using System.Collections.Generic;
     3using System.ComponentModel;
     4using System.Data;
     5using System.Drawing;
     6using System.Linq;
     7using System.Text;
     8using System.Threading;
     9using System.Windows.Forms;
    10
    11namespace BrowserDemo
    12{
    13    public partial class Form8 : Form
    14    {
    15        public Form8()
    16        {
    17            InitializeComponent();
    18        }

    19
    20        private void button1_Click(object sender, EventArgs e)
    21        {
    22            DoWork();
    23        }

    24        private void DoWork()
    25        {
    26            Thread t = new Thread(new ThreadStart(this.DoSomething));
    27            t.Start();
    28        }

    29        private void DoSomething()
    30        {
    31            MessageBox.Show("thread start");
    32        }

    33
    34        private void button2_Click(object sender, EventArgs e)
    35        {
    36            foreach (var v in typeof(AA).GetFields())
    37            {
    38                if (v.FieldType.IsEnum == true)
    39                {
    40                    this.comboBox1.Items.Add(v.Name);
    41                }

    42            }

    43            this.comboBox1.SelectedIndex = 1;
    44
    45
    46        }

    47        public enum AA
    48        {
    49            B,
    50            C
    51        }

    52
    53        private void button3_Click(object sender, EventArgs e)
    54        {
    55
    56            AA a = AA.B;
    57            MessageBox.Show(a.ToString());
    58            this.comboBox1.SelectedIndex = this.comboBox1.FindString(a.ToString());
    59        }

    60    }

    61}

    62

    是些小技巧,但每次要用的时候都得google一遍,真的很痛恨自己这一点,怎么记性就不能再好一点,很耽误时间。在这里记录一下吧

  • 相关阅读:
    H3C BGP配置7大规模BGP网络典型配置举例1BGP团体配置
    H3C BGP配置5MBGP配置
    ISIS原理介绍1
    BGP原理介绍3
    H3C OSPF配置9快速重路由配置举例
    H3C无线配置4无线控制器静态VLANgroup实现AC间漫游典型配置举例
    BGP原理介绍1
    H3C OSPF配置10常见配置错误举例
    H3C OSPF配置3DR选择配置举例
    H3C无线配置1license管理
  • 原文地址:https://www.cnblogs.com/lexus/p/1278557.html
Copyright © 2011-2022 走看看