在中窗体中比如按"Crrl+F"建,弹出查询对话框?该怎么做

解决方案 »

  1.   

    <a href="http://www.baidu.com" accesskey="a">按Alt+A打开该链接</a>
    这个是html
    在C#里面别的不知道,期待
    顶!!!!!!!!!!!!!!!!!!!!!!!!
      

  2.   

    用API注册窗体热键就可以.        [System.Runtime.InteropServices.DllImport("user32.dll")] //申明API函数
            public static extern bool RegisterHotKey(
             IntPtr hWnd, 
             int id,          uint fsModifiers, 
             Keys vk        );        [System.Runtime.InteropServices.DllImport("user32.dll")] //申明API函数
            public static extern bool UnregisterHotKey(
             IntPtr hWnd, 
             int id
            );