Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブラウザにアプレットを表示し、アプレットの開始フォーカスが自動的にブラウザの矢印キーに移動してページを上下に移動するときに、jframe内の内部jframeにフォーカスを合わせるには、フレームリスナーに追加する特定の順序はありませんか?
このコードを試してください:
protected void createFrame() { MyInternalFrame frame = new MyInternalFrame(); frame.setVisible(true); desktop.add(frame); try { frame.setSelected(true); } catch (java.beans.PropertyVetoException e) {} }