import javax.swing.JButton
import javax.swing.JFrame
import javax.swing.JLabel
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame("")
frame.setLayout(new FlowLayout())
frame.setSize(220, 90)
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
JLabel jLabel = new JLabel("hello")
JButton jButton = new JButton("欢迎")
frame.add(jLabel)
frame.add(jButton)
frame.setVisible(true)
}
}
1. 首先,我个人实在是很不赞同写这种大多数人看不懂的code.2.这种才是通常会用到的写法
JPanel panel = new JPanel()
panel.add(new JLabel("aaa:"))
panel.add(new JLabel("bbb:"))
3.如果有什么很特殊的原因单纯是要使JPanel匿名 (虽然我暂时想不太到), 可以考虑使用LayoutManager,比如像下面这样:
import java.awt.GridLayout
GridLayout layout = new GridLayout()
layout.addLayoutComponent("label2", new JLabel("aaa:"))
layout.addLayoutComponent("label1", new JLabel("bbb:"))
this.add(new JPanel(layout))
4. 如果必须要模仿你那种很“高级”的格式,下面这个才是正确的:
this.add(new JPanel() {
private static final long serialVersionUID = 1L
{
this.add(new JLabel("aaa:"))
this.add(new JLabel("bbb:"))
}
})
5.如果不用 serialVersionUID 而是用@SuppressWarning或者干脆无视warning的话, 外面那一层留给variable的bracket也不能去掉, 像下面这段在读code时看到的话我会想诅咒作者的方式:
this.add(new JPanel() {{
this.add(new JLabel("aaa:"))
this.add(new JLabel("bbb:"))
}})
6.所以总的来说,你的code错误只有两个,第一是少一层{},第二是不该用JPanel.this,直接用this就可以了。
最后奉劝一句,写出来的code别人和自己都一目了然看得很清楚很明白的才是好的code.
java swing中JLabel中添加JButton只需要使用JLabel的add方法就可以添加,实例如下:
package components
import java.awt.event.ActionEvent
import java.awt.event.ActionListener
import java.awt.event.KeyEvent
import java.net.URL
import javax.swing.ImageIcon
import javax.swing.JButton
import javax.swing.JFrame
import javax.swing.JPanel
import javax.swing.SwingUtilities
public class JButtonTest extends JPanel implements ActionListener {
private static final long serialVersionUID = 1L
JButton button1,button2,button3
public JButtonTest() {
//创建button上的图标
ImageIcon imageIcon1 = createImage("images/right.gif")
ImageIcon imageIcon2 = createImage("images/middle.gif")
ImageIcon imageIcon3 = createImage("images/left.gif")
//创建Button,并设置Button的图标
button1 = new JButton("中间按钮不可用",imageIcon1)
//设置Button的文本位置
button1.setVerticalTextPosition(JButton.CENTER)
button1.setHorizontalTextPosition(JButton.LEADING)
//设置Button的快捷键
button1.setMnemonic(KeyEvent.VK_D)
//设置Button的反馈消息,消息处理者通过这个标记来辨别是哪个按钮被点击
button1.setActionCommand("disable")
//为Button添加监听者
button1.addActionListener(this)
//设置Button的提示信息
button1.setToolTipText("点击此按键,此按键和中间按键变为不可用,右边按键变为可用")
//将Button添加到panel中
add(button1)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)