Disable the Ctrl-Alt-Delete event through Java program
问题 I am creating a desktop application using the JDesktopPane. I'm almost complete, but when I press ctrl + alt + del , it leaves my application. How can I prevent that action? 回答1: Fact is Alt + Ctrl + Del never actually entering your application. Os traps Alt + Ctrl + Del before it is send to your application. So you can't trap it. 回答2: Alt + Ctrl + Del cannot be overridden. It is a security feature. 回答3: You cannot do that. The behavior of Alt + Ctrl + Del is enforced by the operating system,