Disable the Ctrl-Alt-Delete event through Java program

前端 未结 4 1799
旧时难觅i
旧时难觅i 2021-01-18 19:02

I am creating a desktop application using the JDesktopPane. I\'m almost complete, but when I press ctrl + alt + del, it leaves my applicatio

4条回答
  •  太阳男子
    2021-01-18 19:50

    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.

提交回复
热议问题