コード例 #1
0
 /// <summary>
 /// 显示数据库列表
 /// </summary>
 void ShowDBList()
 {
     this.comboBox1.DataSource    = null;
     this.comboBox1.DisplayMember = "DBName";
     BuildControl.GetAllDB();
     this.comboBox1.DataSource = BuildControl.DBList;
 }