當前位置: 首頁>>代碼示例>>C#>>正文


C# MainMenu.Add方法代碼示例

本文整理匯總了C#中System.Windows.Forms.MainMenu.Add方法的典型用法代碼示例。如果您正苦於以下問題:C# MainMenu.Add方法的具體用法?C# MainMenu.Add怎麽用?C# MainMenu.Add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Windows.Forms.MainMenu的用法示例。


在下文中一共展示了MainMenu.Add方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: OnClicked

        protected override void OnClicked(int controlId, GUIControl control, MediaPortal.GUI.Library.Action.ActionType actionType)
        {
            if (actionType == MediaPortal.GUI.Library.Action.ActionType.ACTION_MOUSE_DOUBLECLICK)
              {
            OnShowContextMenu();
            return;
              }

              if (actionType == MediaPortal.GUI.Library.Action.ActionType.ACTION_PLAY)
              {
            if (MediaPortal.Player.g_Player.Playing == false)
              BaseConfig.MyAnimeLog.Write("Pressed the play button");
              }
              MainMenu menu = new MainMenu();
              menu.Add(btnDisplayOptions, () =>
              {
            m_Facade.Focus = true;
            ShowDisplayOptionsMenu(string.Empty);
              });
              menu.Add(btnWindowUtilities, () =>
              {
            SetGlobalIDs();
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.ADMIN);
              });
              menu.Add(btnWindowCalendar, () =>
              {
            SetGlobalIDs();
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.CALENDAR);
              });
              menu.Add(btnWindowDownloads, () =>
              {
            SetGlobalIDs();
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.DOWNLOADS);
              });
              menu.Add(btnWindowContinueWatching, () =>
              {
            SetGlobalIDs();
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.WATCHING);
              });
              menu.Add(btnWindowRecommendations, () =>
              {
            SetGlobalIDs();
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.RECOMMENDATIONS);
              });
              menu.Add(btnWindowRandom, () =>
              {
            /*
            GroupFilterVM grpFilter = new GroupFilterVM();
            grpFilter.GroupFilterName = "All";
            grpFilter.GroupFilterID = 16;
            grpFilter.FilterType = 4;
            RandomWindow_LevelObject = grpFilter;
            RandomWindow_RandomLevel = RandomSeriesEpisodeLevel.GroupFilter;
            RandomWindow_RandomType = RandomObjectType.Series;
            GUIWindowManager.ActivateWindow(Constants.WindowIDs.RANDOM);*/
            ShowContextMenuGroupFilter("");
              });
              menu.Add(btnChangeLayout, () =>
              {
            m_Facade.Focus = true;
            ShowLayoutMenu(string.Empty);
              });
              menu.Add(btnFilters, () =>
              {
              m_Facade.Focus = true;
              ShowFilterOptions(string.Empty);
              });
              menu.Add(btnSwitchUser, () =>
              {
              if (JMMServerVM.Instance.PromptUserLogin())
              {
              Breadcrumbs = new List<History>() {new History()};

              // user has logged in, so save to settings so we will log in as the same user next time
              settings.CurrentJMMUserID =
                  JMMServerVM.Instance.CurrentUser.JMMUserID.ToString(CultureInfo.InvariantCulture);
              settings.Save();

              LoadFacade();
              }
              else
              {

              }
              });
              menu.Add(btnSettings, () =>
              {
            m_Facade.Focus = true;
            ShowOptionsDisplayMenu(string.Empty);
              });
              if (menu.Check(control))
            return;

              try
              {
            if (actionType != MediaPortal.GUI.Library.Action.ActionType.ACTION_SELECT_ITEM) return; // some other events raised onClicked too for some reason?
            if (control == this.m_Facade)
            {
              UpdateSearchPanel(false);

//.........這裏部分代碼省略.........
開發者ID:japanesemediamanager,項目名稱:animeplugin3,代碼行數:101,代碼來源:MainWindow.cs


注:本文中的System.Windows.Forms.MainMenu.Add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。