本文介绍了已注册热键ovveride其他应用程序热键.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我为我的应用程序注册了热键"Ctrl + s",以显示和隐藏面板

Hi,

I registered the hot key "Ctrl + s" for my application to show and hide a panel

using[DllImport("user32", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] public static extern bool RegisterHotKey(IntPtr hwnd, int id, uint fsModifiers, uint vk);

method, it's working fine on my application.



但是我的问题是,当我打开应用程序并打开记事本时,键入了一些内容并试图保存记事本,但没有保存,并且在记事本的背面,我的应用程序正在显示和隐藏. >
谢谢与问候
Dhilip.R



But my problem is when i opened my application and opened a notepad typed something and tried to save the notepad, it is not saving and in the back side of the notepad my application''s, the panel is showing and hiding.

Thanks and Regards
Dhilip.R

推荐答案



这篇关于已注册热键ovveride其他应用程序热键.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-24 07:27