diff --git a/EDEngineer/Utils/UI/TrayIconManager.cs b/EDEngineer/Utils/UI/TrayIconManager.cs index 0a567c18..ede3a446 100644 --- a/EDEngineer/Utils/UI/TrayIconManager.cs +++ b/EDEngineer/Utils/UI/TrayIconManager.cs @@ -1,4 +1,5 @@ using System; +using System.Diagnostics; using System.Windows.Forms; using EDEngineer.Utils.System; @@ -48,6 +49,13 @@ private static ContextMenu BuildContextMenu(EventHandler showHandler, EventHandl Text = "Set Shortcut" }; setShortCutItem.Click += configureShortcutHandler; + + var helpItem = new MenuItem() + { + Text = "Help", + }; + helpItem.Click += (o,e) => Process.Start("https://github.com/msarilar/EDEngineer/wiki/Troubleshooting-Issues"); + var quitItem = new MenuItem() { Text = "Quit", @@ -59,6 +67,7 @@ private static ContextMenu BuildContextMenu(EventHandler showHandler, EventHandl menu.MenuItems.Add(unlockItem); menu.MenuItems.Add(setShortCutItem); menu.MenuItems.Add("-"); + menu.MenuItems.Add(helpItem); menu.MenuItems.Add(quitItem); return menu; }