我面臨的一個問題,我想補充不是一個按鈕,一個JFrame多,但只需要在最後一個,並將其放入框架,我的代碼示例如下:我可以將更多按鈕添加到java JFrame嗎?
String isName = "";
JFrame frame = new JFrame(isName);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
String childAmb = "PDA276";
for (int j=0; j<3; j++){
if (childAmb.matches("Phone\\w\\w\\w"))
fancyButtonCreator(childAmb, new ImageIcon ("src/phone.gif"), frame);
else if (childAmb.matches("PDA\\w\\w\\w"))
fancyButtonCreator(childAmb, new ImageIcon ("src/pda.gif"), frame);
else if (childAmb.matches("PC\\w\\w\\w"))
fancyButtonCreator(childAmb, new ImageIcon ("src/pc.gif"), frame);
}
frame.setVisible(true);
frame.setBounds(100, 200, 200, 200);
謝謝您。
你能告訴我們'fancyButtonCreator'中發生了什麼嗎? – jmccarthy 2011-04-04 16:30:09