1234567891011121314151617 |
- namespace System.Windows.Forms
- {
- public class ComboBox : ComboBoxBase
- {
- public AutoCompleteMode AutoCompleteMode { get; set; }
- public AutoCompleteSource AutoCompleteSource { get; set; }
- public FlatStyle FlatStyle { get; set; } // TODO?
- public ComboBox()
- {
- SetComboBox(new CustomControls.ComboBox());
- BackColor = System.Drawing.SystemColors.ControlLightLight;
- Width = 120;
- }
- }
- }
|