ComponentFactory.Krypton.Ribbon.ComboBoxController.ComboBoxController C# (CSharp) Method

ComboBoxController() public method

Initialize a new instance of the ComboBoxController class.
public ComboBoxController ( KryptonRibbon ribbon, KryptonRibbonGroupComboBox comboBox, ViewDrawRibbonGroupComboBox target ) : System
ribbon KryptonRibbon Reference to owning ribbon instance.
comboBox KryptonRibbonGroupComboBox Source definition.
target ViewDrawRibbonGroupComboBox Target view element.
return System
        public ComboBoxController(KryptonRibbon ribbon,
                                  KryptonRibbonGroupComboBox comboBox,
                                  ViewDrawRibbonGroupComboBox target)
        {
            Debug.Assert(ribbon != null);
            Debug.Assert(comboBox != null);
            Debug.Assert(target != null);

            _ribbon = ribbon;
            _comboBox = comboBox;
            _target = target;
        }