c#中怎么把Combobox中选中的在label中显示出来。。求完整代码

给跪了
2025-04-06 09:49:30
推荐回答(1个)
回答1:

已测试过,OK,望采纳。

        private void Form1_Load(object sender, EventArgs e)
        {
            var aList = ComboBoxItem.GetList();

            comboBox1.DataSource = aList;
            comboBox1.DisplayMember = "Text";
            comboBox1.ValueMember = "Value";

            var aComboBoxItem = comboBox1.SelectedItem as ComboBoxItem;
            if (aComboBoxItem != null)
            {
                var aValue = aComboBoxItem.Value;
                var aText = aComboBoxItem.Text;

                label1.Text = aText;
            }
        }

        private class ComboBoxItem
        {
            public string Value { get; set; }
            public string Text { get; set; }

            public static List GetList()
            {
                var aList = new List();
                for (int i = 0; i < 10; i++)
                {
                    var aComboBoxItem = new ComboBoxItem();
                    aComboBoxItem.Text = string.Format("Text_{0}", i);
                    aComboBoxItem.Value = string.Format("Value_{0}", i);

                    aList.Add(aComboBoxItem);
                }
                return aList;
            } 
        }