ACAT.Lib.Extension.AppAgents.WindowsExplorer.WindowsExplorerAgentBase.showMenu C# (CSharp) Метод

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

Dispays the menu indicated by the menu name
private showMenu ( String menuName, String title ) : void
menuName String name of the menu
title String Title of the menu
Результат void
        private void showMenu(String menuName, String title)
        {
            var panelArg = new PanelRequestEventArgs(menuName, title, WindowActivityMonitor.GetForegroundWindowInfo())
            {
                UseCurrentScreenAsParent = true
            };

            showPanel(this, panelArg);
        }
    }