ComponentFactory.Krypton.Toolkit.PaletteComboBoxJustComboStates.PaletteComboBoxJustComboStates C# (CSharp) Метод

PaletteComboBoxJustComboStates() публичный Метод

Initialize a new instance of the PaletteComboBoxJustComboStates class.
public PaletteComboBoxJustComboStates ( IPaletteTriple inheritComboBox, NeedPaintHandler needPaint ) : System
inheritComboBox IPaletteTriple Source for inheriting combo box values.
needPaint NeedPaintHandler Delegate for notifying paint requests.
Результат System
        public PaletteComboBoxJustComboStates(IPaletteTriple inheritComboBox,
                                              NeedPaintHandler needPaint)
        {
            Debug.Assert(inheritComboBox != null);

            // Store the provided paint notification delegate
            NeedPaint = needPaint;

            // Create storage that maps onto the inherit instances
            _comboBoxState = new PaletteInputControlTripleStates(inheritComboBox, needPaint);
        }