JTextField
Graphics nameに追加する方法を知っている人はいますbufferstrategy.getDrawGraphics
か? 次のようなグラフィックにペイントしようとしました:
private JTextField Input = new JTextField();
BufferStrategy bs = getBufferStrategy();
if (bs == null) {
createBufferStrategy(3);
return;
}
final Graphics gCommands = bs.getDrawGraphics();
Graphics gCC = bs.getDrawGraphics();
Input.requestFocus();
Input.paint(gCC);
Input.setBounds(800,250, 350,20);
Input.setBorder(BorderFactory.createLineBorder(Color.BLACK, 0));
Input.setEditable(true);
Input.setBackground(getBackground());
Input.setForeground(getForeground());
Input.addKeyListener(key);
しかし、表示されても編集できませんでした。でもInput.setBounds(800,250, 350,20)
うまくいきませんでした。上記のこのメソッドは、ゲームループ内で呼び出されています。誰でも私を助けることができますか?