ComponentFactory.Krypton.Toolkit.KryptonMaskedTextBoxActionList.KryptonMaskedTextBoxActionList C# (CSharp) Method

KryptonMaskedTextBoxActionList() public method

Initialize a new instance of the KryptonMaskedTextBoxActionList class.
public KryptonMaskedTextBoxActionList ( KryptonMaskedTextBoxDesigner owner ) : System
owner KryptonMaskedTextBoxDesigner Designer that owns this action list instance.
return System
        public KryptonMaskedTextBoxActionList(KryptonMaskedTextBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the text box instance
            _maskedTextBox = owner.Component as KryptonMaskedTextBox;

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