我有一個組合框,那就是我如何填寫它的數據:默認值數據源
SectorCollection sectorCollection = sectorController.SearchAll();
comboSector.DataSource = null;
comboSector.DataSource = sectorCollection;
comboSector.DisplayMember = "titleSector";
comboSector.ValueMember = "idSector";
我想是設置前的數據,就像沒有在ComboBox文本值。 就像「選擇一個扇區」。所以用戶可以知道他在選擇什麼。
這是winform還是asp.net? – Steve