如何禁用 Java Swing 应用程序中的开始按钮?
How to disable the Start button in Java Swing application?
我正在使用 Java-Swing 制作桌面应用程序,用于锁定桌面主屏幕。
我使用了 JFrame
最大尺寸(根据桌面分辨率,即 1366x768)。我已经禁用了 alt-f4 和 alt-tab 键对。
但是如何禁用键盘上的开始按钮?
下面的代码对我来说是一个例子。
使用 KeyEventDispatcher:
public class WindowsKey extends JPanel implements KeyEventDispatcher {
public boolean dispatchKeyEvent(KeyEvent e) {
if (e.getID() == KeyEvent.KEY_TYPED) {
int code = e.getKeyChar();
if (KeyEvent.VK_WINDOWS == code) {
return true;
}
}
return false;
}
}
使用 KeyListener:
// Invoked when a key has been pressed.
public void keyPressed(KeyEvent e) {
// Returns the integer code for the key on the keyboard and if
// keyCode is equal to VK_WINDOWS)...
if (e.getKeyCode() == KeyEvent.VK_WINDOWS) {
// ...call the doIT method.
doIT();
}
}
仅供参考:
/**
* Constant for the Microsoft Windows "Windows" key.
* It is used for both the left and right version of the key.
* @see #getKeyLocation()
* @since 1.5
*/
public static final int VK_WINDOWS = 0x020C;
我正在使用 Java-Swing 制作桌面应用程序,用于锁定桌面主屏幕。
我使用了 JFrame
最大尺寸(根据桌面分辨率,即 1366x768)。我已经禁用了 alt-f4 和 alt-tab 键对。
但是如何禁用键盘上的开始按钮?
下面的代码对我来说是一个例子。
使用 KeyEventDispatcher:
public class WindowsKey extends JPanel implements KeyEventDispatcher {
public boolean dispatchKeyEvent(KeyEvent e) {
if (e.getID() == KeyEvent.KEY_TYPED) {
int code = e.getKeyChar();
if (KeyEvent.VK_WINDOWS == code) {
return true;
}
}
return false;
}
}
使用 KeyListener:
// Invoked when a key has been pressed.
public void keyPressed(KeyEvent e) {
// Returns the integer code for the key on the keyboard and if
// keyCode is equal to VK_WINDOWS)...
if (e.getKeyCode() == KeyEvent.VK_WINDOWS) {
// ...call the doIT method.
doIT();
}
}
仅供参考:
/**
* Constant for the Microsoft Windows "Windows" key.
* It is used for both the left and right version of the key.
* @see #getKeyLocation()
* @since 1.5
*/
public static final int VK_WINDOWS = 0x020C;