comboBox1.DataSource = Enum.GetNames(typeof(FontStyle));
comboBox2.DataSource = Enum.GetValues(typeof(FontStyle));上面这两句话的实现是一样的,但有什么不同呢??