大马资讯论坛 - 马来西亚中文资讯平台

标题: C# ComboBox in DropDownList style Set Text加入String [打印本页]

作者: 资讯王    时间: 2011-8-17 22:11
标题: C# ComboBox in DropDownList style Set Text加入String
实现在DropDownList添加初始化值,代码如下供参考。
  1. comboBox.Text = "Select Customer";
复制代码
首先你可以在form load时,添加Select Customer。
当on click时,把它拿掉即可。
  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3.     if (!comboBox1.Items.Contains("Select Customer"))
  4.     {
  5.         comboBox1.Items.Add("Select Customer");
  6.     }

  7.     comboBox1.Text = "Select Customer";
  8. }

  9. private void comboBox1_DropDown(object sender, EventArgs e)
  10. {
  11.     if (comboBox1.Items.Contains("Select Customer"))
  12.         comboBox1.Items.Remove("Select Customer");
  13. }
复制代码





欢迎光临 大马资讯论坛 - 马来西亚中文资讯平台 (http://freeinfo.com.my/) Powered by Discuz! X3.3