ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupTripleDesigner.OnAddButton C# (CSharp) Method

OnAddButton() private method

private OnAddButton ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void OnAddButton(object sender, EventArgs e)
        {
            if ((_ribbonTriple != null) &&
                (_ribbonTriple.Ribbon != null) &&
                 _ribbonTriple.RibbonGroup.Items.Contains(_ribbonTriple))
            {
                // Use a transaction to support undo/redo actions
                DesignerTransaction transaction = _designerHost.CreateTransaction("KryptonRibbonGroupTriple AddButton");

                try
                {
                    // Get access to the Items property
                    MemberDescriptor propertyItems = TypeDescriptor.GetProperties(_ribbonTriple)["Items"];

                    RaiseComponentChanging(propertyItems);

                    // Get designer to create a button item
                    KryptonRibbonGroupButton button = (KryptonRibbonGroupButton)_designerHost.CreateComponent(typeof(KryptonRibbonGroupButton));
                    _ribbonTriple.Items.Add(button);

                    RaiseComponentChanged(propertyItems, null, null);
                }
                finally
                {
                    // If we managed to create the transaction, then do it
                    if (transaction != null)
                        transaction.Commit();
                }
            }
        }