this.comboBox1.SelectedItem = (from p in this.comboBox1.Items
                                           
where (p as Person).Age == 20
                                           select p).First();

相关文章: