标题:不明白?
取消只看楼主
天一
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-8-1
 问题点数:0 回复次数:0 
不明白?

import javax.swing.*; import java.awt.*; import java.awt.event.*;

public class JFrm extends JFrame{ public JFrm(){ Container c=this.getContentPane(); JButton btn=new JButton("Button"); //Left JPanel JPanel p=new JPanel(); p.setBackground(Color.pink); //Right JPanel PanelB pb=new PanelB(); pb.setBackground(Color.BLUE); p.add(btn,BorderLayout.CENTER); c.add(p,BorderLayout.WEST); c.add(pb); //Add Listener ButtonListener bl=new ButtonListener(pb); btn.addActionListener(bl); this.setSize(400,300); this.setVisible(true); }

public static void main(String[] args) { new JFrm(); } }

class PanelB extends JPanel{ public JTextField txt; public PanelB( ){ txt=new JTextField(20); this.add(txt); } } //class ButtonListener implements ActionListener{ PanelB p; public ButtonListener(PanelB p){ this.p=p; }//这个是用到的什么机制? public void actionPerformed(ActionEvent e){ p.txt.setText(e.getActionCommand()); } }

搜索更多相关主题的帖子: public border center import 
2005-08-15 10:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-25159-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.147912 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved