ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupTripleDesigner.OnAddRadioButton C# (CSharp) 메소드

OnAddRadioButton() 개인적인 메소드

private OnAddRadioButton ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void OnAddRadioButton(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 AddRadioButton");

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

                    RaiseComponentChanging(propertyItems);

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

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