我想要一个预定的用户名下拉列表,用户可以使用组合框从中进行选择。下面的代码不起作用。Login Picture
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox1.Items.Add("Attendee");
comboBox1.Items.Add("HOD");
comboBox1.Items.Add("Driver");
comboBox1.Items.Add("FD");
}
}
}
答案 0 :(得分:0)
双击登录表单,然后将代码放入Load
事件处理程序中。默认情况下,事件处理程序的名称为YourFormName_Load
。
using System;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
comboBox1.Items.Add("Attendee");
comboBox1.Items.Add("HOD");
comboBox1.Items.Add("Driver");
comboBox1.Items.Add("FD");
}
}
}