ComboBox.cs 479 B

1234567891011121314151617
  1. namespace System.Windows.Forms
  2. {
  3. public class ComboBox : ComboBoxBase
  4. {
  5. public AutoCompleteMode AutoCompleteMode { get; set; }
  6. public AutoCompleteSource AutoCompleteSource { get; set; }
  7. public FlatStyle FlatStyle { get; set; } // TODO?
  8. public ComboBox()
  9. {
  10. SetComboBox(new CustomControls.ComboBox());
  11. BackColor = System.Drawing.SystemColors.ControlLightLight;
  12. Width = 120;
  13. }
  14. }
  15. }