程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jbutton-JButton 圖片 改變位置

jbutton-JButton 圖片 改變位置

編輯:編程綜合問答
JButton 圖片 改變位置

如何點擊一個JButton獲得它上面的圖片,再點擊另一個JButton讓這個上面顯示剛才那個按鈕上的圖片,謝謝~

最佳回答:


public class Dialog2 extends JDialog{ JPanel panel1 = new JPanel(); BorderLayout borderLayout1 = new BorderLayout(); public Dialog2(Frame owner, String title, boolean modal) { super(owner, title, modal); try { setDefaultCloseOperation(DISPOSE_ON_CLOSE); jbInit(); pack(); } catch (Exception exception) { exception.printStackTrace(); } } public Dialog2() { this(new Frame(), "Dialog2", true);//這裡設為了模態 this.setSize(10,20);//這裡設對話框大小 } private void jbInit() throws Exception { panel1.setLayout(borderLayout1); getContentPane().add(panel1); }}用這個就可以了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved