PeerCastStation.WPF.NotifyIconManager.CreateNotifyIconMenu C# (CSharp) Method

CreateNotifyIconMenu() private method

private CreateNotifyIconMenu ( ) : ContextMenuStrip
return System.Windows.Forms.ContextMenuStrip
    private ContextMenuStrip CreateNotifyIconMenu()
    {
      var notifyIconMenu = new System.Windows.Forms.ContextMenuStrip();
      notifyIconMenu.SuspendLayout();
      notifyIconMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
          CreateShowHelp(),
          CreateVersionCheck(),
          CreateSeparator(),
          CreateShowHTMLUI(),
          CreateShowGUI(),
          CreateSeparator(),
          CreateQuit(),
      });
      notifyIconMenu.ShowImageMargin = false;
      notifyIconMenu.ResumeLayout(false);
      return notifyIconMenu;
    }