123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace WindowsFormsSelectControlSelectedValueChanged
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- comboBox1.DropDownStyle = ComboBoxStyle.DropDown;
- comboBox1.Items.Add("挣钱"); //Items表示所有下拉选项的集合
- comboBox1.Items.Add("吃饭");
- comboBox1.Items.Add("喝酒");
- }
- private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
- {
- label1.Text = comboBox1.Text;
- }
- }
- }
|