其實很簡單,因為Combox的Item是一個K/V的object,那麼就可以把它的items轉換成IEnumerable<DictionaryEntry>類型的(System.Collections命名空間),然後根據要選中的Key或Value使用Lamda表達式來設置Combox的選中項。 比如當 ...
其實很簡單,因為Combox的Item是一個K/V的object,那麼就可以把它的items轉換成IEnumerable<DictionaryEntry>類型的(System.Collections命名空間),然後根據要選中的Key或Value使用Lamda表達式來設置Combox的選中項。
比如當點擊dataGridview的某條記錄的時候,某個combox自動選中此記錄對應的值,則代碼如下:
comboBox1.SelectedItem = comboBox1.Items.Cast<DictionaryEntry>() .FirstOrDefault(x => x.Value.ToString() == dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString());