use GetSystemMenu API, see32.6 How can I add items to the System Menu of a form
http://www.syncfusion.com/FAQ/WinForms/FAQ_c95c.asp#q1136q

解决方案 »

  1.   

    取得一个窗体的标题(caption)文字[DllImport("user32.dll", EntryPoint="GetWindowTextA")]
    private static extern int GetWindowText (int hwnd, string lpString, int cch);
      

  2.   

    使用 GetSystemMenu 取得菜单,然后使用 AppendMenu, RemoveMenu 等菜单函数来操作菜单。