This is something I used to have a code snippet for in VB6, but I haven’t needed to do this in a while so I never wrote up an example in .NET. So, here’s the simple code necessary to add some custom menu items to your applications System Menu. If you’re not familiar, the System Menu is the menu that shows up if you click on the apps icon in the upper left or if you right click the app in the taskbar.

Below is a screenshot of it in action along with the complete source code in C#.


using System;
 using System.Windows.Forms;
 using System.Runtime.InteropServices;

namespace WinFormsSystemMenuTest
 {
     public partial class Form1 : Form
     {
         #region Win32 API Stuff

        // Define the Win32 API methods we are going to use
         [DllImport("user32.dll")]
         private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);

        [DllImport("user32.dll")]
         private static extern bool InsertMenu(IntPtr hMenu, Int32 wPosition, Int32 wFlags, Int32 wIDNewItem, string lpNewItem);

        /// Define our Constants we will use
         public const Int32 WM_SYSCOMMAND = 0x112;
         public const Int32 MF_SEPARATOR = 0x800;
         public const Int32 MF_BYPOSITION = 0x400;
         public const Int32 MF_STRING = 0x0;
         
         #endregion
         
         // The constants we'll use to identify our custom system menu items
         public const Int32 _SettingsSysMenuID = 1000;
         public const Int32 _AboutSysMenuID = 1001;

        public Form1()
         {
             InitializeComponent();
         }

        private void Form1_Load(object sender, EventArgs e)
         {
             /// Get the Handle for the Forms System Menu
             IntPtr systemMenuHandle = GetSystemMenu(this.Handle, false);

            /// Create our new System Menu items just before the Close menu item
             InsertMenu(systemMenuHandle, 5, MF_BYPOSITION | MF_SEPARATOR, 0, string.Empty); // <-- Add a menu seperator
             InsertMenu(systemMenuHandle, 6, MF_BYPOSITION, _SettingsSysMenuID, "Settings...");
             InsertMenu(systemMenuHandle, 7, MF_BYPOSITION, _AboutSysMenuID, "About...");
         }

        protected override void WndProc(ref Message m)
         {
             // Check if a System Command has been executed
             if (m.Msg == WM_SYSCOMMAND)
             {
                 // Execute the appropriate code for the System Menu item that was clicked
                 switch (m.WParam.ToInt32())
                 {
                     case _SettingsSysMenuID:
                         MessageBox.Show("\"Settings\" was clicked");
                         break;
                     case _AboutSysMenuID:
                         MessageBox.Show("\"About\" was clicked");
                         break;
                 }
             }
             
             base.WndProc(ref m);
         }
     }
 }

Here’s a link on how to “Add System Menu Items to WPF Window using Win32 API”.