添加其他文本时,JTextPane无法显示组件

时间:2016-02-05 02:36:44

标签: java swing jbutton jtextpane

我的JutxtPane中有两个完全出现在我的JTextPane上,当它们是它上面的唯一项目时。但是,当我向JTextPane添加更多文本时,按钮似乎从JTextPane中消失。例如:

possibleWordsPane.setText("");
possibleWordsPane.insertComponent(guessButton);
possibleWordsPane.insertComponent(botToggleButton);
possibleWordsPane.setText(possibleWordsPane.getText() + " \nTime left: " + time + '\n');

如果代码的最后一行被注释掉或删除,则仅显示按钮。 如何让我的两个按钮与更多文字一起显示?

0 个答案:

没有答案