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

OnComponentRemoving() приватный Метод

private OnComponentRemoving ( object sender, ComponentEventArgs e ) : void
sender object
e System.ComponentModel.Design.ComponentEventArgs
Результат void
        private void OnComponentRemoving(object sender, ComponentEventArgs e)
        {
            // If our control is being removed
            if ((_numericUpDown != null) && (e.Component == _numericUpDown))
            {
                // Need access to host in order to delete a component
                IDesignerHost host = (IDesignerHost)GetService(typeof(IDesignerHost));

                // We need to remove all the button spec instances
                for (int i = _numericUpDown.ButtonSpecs.Count - 1; i >= 0; i--)
                {
                    // Get access to the indexed button spec
                    ButtonSpec spec = _numericUpDown.ButtonSpecs[i];

                    // Must wrap button spec removal in change notifications
                    _changeService.OnComponentChanging(_numericUpDown, null);

                    // Perform actual removal of button spec from textbox
                    _numericUpDown.ButtonSpecs.Remove(spec);

                    // Get host to remove it from design time
                    host.DestroyComponent(spec);

                    // Must wrap button spec removal in change notifications
                    _changeService.OnComponentChanged(_numericUpDown, null, null, null);
                }
            }
        }
KryptonNumericUpDownColumnDesigner