0
我建立這個彈出了學習新的語言應用程序,如果用戶發現一個未知的單詞,他可以簡單地按任何鍵盤鍵(如alt + p),以便應用程序彈出並允許他插入新詞打開應用程序與鍵按
,爲了使鍵時,會聽取任何地方我編碼以下
public class IsKeyPressed extends JFrame implements KeyListener {
public IsKeyPressed() {
this.setExtendedState(MAXIMIZED_BOTH);
this.setUndecorated(true);
this.setBackground(new Color(0, 0, 0, 0));
this.addKeyListener(this);
this.setAlwaysOnTop(true);
this.setVisible(true);
while (true) {
this.toFront();
this.requestFocus();
this.repaint();
}
}
public static void main(String[] args) {
new IsKeyPressed();
}
@Override
public void keyPressed(KeyEvent ke) {
//open the pop up application
}
但如果幀從任務欄 專注所以基本上不`噸它不只是做工精細工作
任何想法如何解決?謝謝!
isn't有反正周圍.. 像grapping重點框架每次它失去它.. 因爲我不能找到任何可以虎視眈眈的焦點幀 –
@KareemElsayed:這將是如果可能的話,這是一個可怕的解決方案,但幸好,這是不可能的。 –
所以工具不會有助於傳播我的應用程序,唯一的方法是使用C我認爲...你可以給我任何我可以搜索的東西,因爲我什麼也不知道在C –