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

TextBoxController() public method

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

            _ribbon = ribbon;
            _textBox = textBox;
            _target = target;
        }