C# winform

博客园 联系 订阅 管理
  10 Posts :: 1 Stories :: 8 Comments :: 0 Trackbacks

News

09 2009 档案

摘要: 输入时自动匹配AutoCompleteStringCollection myCutomSource = new AutoCompleteStringCollection(); myCutomSource.AddRange(new string[] { "上海市某区", "北京市某区", "天津市某区", "重庆市某区" }); this.textBox1.AutoCompleteSource = ...阅读全文
posted @ 2009-09-15 14:25 fffdc 阅读(154) | 评论 (1) 编辑

摘要: private void button2_Click(object sender, EventArgs e) { bool have = false; foreach (TabPage a in tabControl1.TabPages) { if (a.Name == "KKK")//tabpage名 kkk { have = true; } } if (!have) { TabPage Ta...阅读全文
posted @ 2009-09-08 17:23 fffdc 阅读(1304) | 评论 (2) 编辑