ComboBox.xaml.cs 407 B

123456789101112131415
  1. using System.ComponentModel;
  2. namespace CustomControls
  3. {
  4. [DesignTimeVisible(false)]
  5. public partial class ComboBox : OwnerDrawComboBox
  6. {
  7. public ComboBox()
  8. {
  9. InitializeComponent();
  10. Template = (System.Windows.Controls.ControlTemplate)Resources["ComboBoxEditableTemplate"];
  11. Padding = new System.Windows.Thickness(2, 3, 2, 3);
  12. }
  13. }
  14. }