public ComboBoxBackend() { ComboBox = new ExComboBox(); ComboBox.DisplayMemberPath = ".[0]"; //ComboBox.ItemTemplate = DefaultTemplate; ComboBox.ItemContainerStyle = ContainerStyle; }
public ComboBoxTextEntryBackend(ExComboBox combobox) { if (combobox == null) throw new ArgumentNullException ("combobox"); this.combobox = combobox; this.combobox.GotFocus += OnGotFocus; this.combobox.LostFocus += OnLostFocus; }
public ComboBoxTextEntryBackend(ExComboBox combobox) { if (combobox == null) { throw new ArgumentNullException("combobox"); } this.combobox = combobox; this.combobox.GotFocus += OnGotFocus; this.combobox.LostFocus += OnLostFocus; }