zoukankan      html  css  js  c++  java
  • 给窗体的任务栏右键菜单增加项目

    给窗体的任务栏右键菜单增加项目
            [DllImport("user32.dll")]
            private static extern int GetSystemMenu(int hwnd, int bRevert);
            [DllImport("user32.dll")]
            private static extern int AppendMenu(int hMenu, int Flagsw, int IDNewItem, string lpNewItem);
                //   get   handle   to   system   menu  
                int menu = GetSystemMenu(this.Handle.ToInt32(), 0);
                //   add   a   separator  
                AppendMenu(menu, 0xA00, 0, null);
                //   add   an   item   with   a   unique   ID  
                AppendMenu(menu, 0, 1234, "跳至URL");
                AppendMenu(menu, 0, 1235, "关于HTML帮助");

    处理事件
            protected override void WndProc(ref Message m)
            {
                base.WndProc(ref   m);
                //   WM_SYSCOMMAND   is   0x112  
                if (m.Msg == 0x112)
                {
                    //   check   for   my   new   menu   item   ID  
                    if (m.WParam.ToInt32() == 1234)
                    {
                        //   show   About   box   here  
                        MessageBox.Show("Btn One");
                    }
                    if (m.WParam.ToInt32() == 1235)
                    {
                        //   show   About   box   here  
                        MessageBox.Show("Btn Two");
                    }
                }
            }
  • 相关阅读:
    luogu P1630 求和(枚举暴力)
    luogu P3414 SAC#1
    luogu P1869 愚蠢的组合数(质因数+瞎搞)
    luogu P1586 四方定理(背包)
    luogu P3795 钟氏映射(递推)
    2017.8.15 [Haoi2016]字符合并 区间dp+状压dp
    [NOI2002] 荒岛野人 扩展欧几里得算法
    [Noi2002]Savage 扩展欧几里得
    bzoj 1778: [Usaco2010 Hol]Dotp 驱逐猪猡
    bzoj 3505: [Cqoi2014]数三角形
  • 原文地址:https://www.cnblogs.com/linmilove/p/1500877.html
Copyright © 2011-2022 走看看