12345678910111213141516171819202122232425262728 |
- 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 WindowsFormsSelectControl
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
- comboBox1.Items.Add("挣钱"); //Items表示所有下拉选项的集合
- comboBox1.Items.Add("吃饭");
- comboBox1.Items.Add("喝酒");
- }
- }
- }
|