大马资讯论坛 - 马来西亚中文资讯平台
标题:
C# ComboBox in DropDownList style Set Text加入String
[打印本页]
作者:
资讯王
时间:
2011-8-17 22:11
标题:
C# ComboBox in DropDownList style Set Text加入String
实现在DropDownList添加初始化值,代码如下供参考。
comboBox.Text = "Select Customer";
复制代码
首先你可以在form load时,添加Select Customer。
当on click时,把它拿掉即可。
private void button1_Click(object sender, EventArgs e)
{
if (!comboBox1.Items.Contains("Select Customer"))
{
comboBox1.Items.Add("Select Customer");
}
comboBox1.Text = "Select Customer";
}
private void comboBox1_DropDown(object sender, EventArgs e)
{
if (comboBox1.Items.Contains("Select Customer"))
comboBox1.Items.Remove("Select Customer");
}
复制代码
欢迎光临 大马资讯论坛 - 马来西亚中文资讯平台 (http://freeinfo.com.my/)
Powered by Discuz! X3.3