java标签更改显示,通过按钮更改标签(Java / Swing问题)

newbie programmer here:

I just made my first button. I want the button to change the label "Hello World!" to "Hello Universe!". I tried searching for ways to change the label through public void actionPerformed(ActionEvent e), but failed to find any. If anybody would be kind enough to explain to me how to change the commented section in public void actionPerformed(ActionEvent e) to change the label, please explain!

Thanks!

My code:

package game;

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

public class Javagame extends JPanel implements ActionListener{

double x=Math.random()*500;

double y=Math.random()*500;

protected JButton b1;

public Javagame() {

b1 = new JButton("Button!");

b1.setActionCommand("change");

b1.addActionListener(this);

add(b1);

}

public void actionPerformed(ActionEvent e) {

if ("change".equals(e.getActionCommand())) {

//I want a code here that changes "Hello World" to "Hello Universe". Thank you.

}

}

private static void createWindow(){

JFrame frame = new JFrame("Javagame");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

frame.setPreferredSize(new Dimension(500,500));

JLabel label = new JLabel("Hello World!", SwingConstants.CENTER);

label.setFont(new Font("Arial", Font.BOLD, 20));

label.setForeground(new Color(0x009900));

Javagame newContentPane = new Javagame();

newContentPane.setOpaque(true);

frame.setContentPane(newContentPane);

frame.getContentPane().add(label, BorderLayout.CENTER);

frame.setLocationRelativeTo(null);

frame.pack();

frame.setVisible(true);

}

public static void main(String[] args) {

createWindow();

}

}

解决方案

That's because you have no means of getting a reference to the label to change it....

Move the deceleration of the label to the class level...

public class Javagame extends JPanel implements ActionListener{

double x=Math.random()*500;

double y=Math.random()*500;

protected JButton b1;

// Add me...

private JLabel label;

Move the label to reside in the panel

public Javagame() {

b1 = new JButton("Button!");

b1.setActionCommand("change");

b1.addActionListener(this);

add(b1);

// Move me here

label = new JLabel("Hello World!", SwingConstants.CENTER);

label.setFont(new Font("Arial", Font.BOLD, 20));

label.setForeground(new Color(0x009900));

add(label);

}

Then in your actionPerformed method you will be able to reference it...

public void actionPerformed(ActionEvent e) {

if ("change".equals(e.getActionCommand())) {

label.setText("I have changed");

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值