ComponentFactory.Krypton.Toolkit.KryptonTextBoxActionList.KryptonTextBoxActionList C# (CSharp) Méthode

KryptonTextBoxActionList() public méthode

Initialize a new instance of the KryptonTextBoxActionList class.
public KryptonTextBoxActionList ( KryptonTextBoxDesigner owner ) : System
owner KryptonTextBoxDesigner Designer that owns this action list instance.
Résultat System
        public KryptonTextBoxActionList(KryptonTextBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the text box instance
            _textBox = owner.Component as KryptonTextBox;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }