System.Windows.Forms.CommandBarItemCollection.AddMenu C# (CSharp) Méthode

AddMenu() public méthode

public AddMenu ( string text, EventHandler dropDownHandler ) : System.Windows.Forms.CommandBarMenu
text string
dropDownHandler EventHandler
Résultat System.Windows.Forms.CommandBarMenu
        public CommandBarMenu AddMenu(string text, EventHandler dropDownHandler)
        {
            CommandBarMenu menu = this.AddMenu(text);
            menu.DropDown += dropDownHandler;
            return menu;
        }

Same methods

CommandBarItemCollection::AddMenu ( Image image, string text ) : System.Windows.Forms.CommandBarMenu
CommandBarItemCollection::AddMenu ( Image image, string text, EventHandler dropDownHandler ) : System.Windows.Forms.CommandBarMenu
CommandBarItemCollection::AddMenu ( string text ) : System.Windows.Forms.CommandBarMenu