编写Java程序,在窗体的中央显示一行文字(文字内容自定),并且文字会在窗体内左右漂移。

 我来答
百度网友388688327
2009-06-28 · TA获得超过1053个赞
知道小有建树答主
回答量:1297
采纳率:0%
帮助的人:967万
展开全部
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Piaoyi extends JFrame implements ActionListener
{
JPanel jp=new JPanel();
JButton b1=new JButton("左");
JButton b2=new JButton("中");
JButton b3=new JButton("右");
JLabel l=new JLabel("我只会在这里面漂移...");
public AAA()
{
jp.setLayout(new FlowLayout());
jp.add(b1);
jp.add(b2);
jp.add(b3);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);

this.add(jp,BorderLayout.NORTH);
this.add(l,BorderLayout.CENTER);
this.setBounds(100,100,260,160);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==b1)
{
l.setHorizontalAlignment(JLabel.LEFT);
}
if(e.getSource()==b2)
{
l.setHorizontalAlignment(JLabel.CENTER);
}
if(e.getSource()==b3)
{
l.setHorizontalAlignment(JLabel.RIGHT);
}
}
public static void main(String[] args)
{
new Piaoyi();
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式