System.Windows.Forms.CommandBarContextMenu.MenuBarItem.OnPopup C# (CSharp) 메소드

OnPopup() 보호된 메소드

protected OnPopup ( EventArgs e ) : void
e System.EventArgs
리턴 void
            protected override void OnPopup(EventArgs e)
            {
                CommandBarMenu menu = this.item as CommandBarMenu;
                if (menu != null)
                {
                    menu.PerformDropDown(EventArgs.Empty);
                }

                base.OnPopup(e);
                this.UpdateItems();
            }