我想添加到窗口從x,y位置JTextArea
與滾動。 問題是,當我做可視化代碼時,它確實填充了500x500窗口,我希望在x,y pos只填充200x200的完整值。GUI JTextArea&JScrollPane&定位
我在做什麼錯?這裏是我的代碼:
public static void main(String args[])
{
JFrame window = new JFrame();
window.setSize(500, 500);
window.setResizable(false);
JTextArea ta = new JTextArea("Default message");
ta.setEditable(true);
JScrollPane scroll = new JScrollPane(ta);
scroll.setBounds(10,10,200,200);
window.add(scroll);
window.setVisible(true);
}
@AndrewThompson,對於一個強大的圖形用戶界面,最合理的舉動是使用佈局管理器? Arent還有其他的選擇嗎? – user1768615