java,怎么设置label的位置和大小?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java,怎么设置label的位置和大小?相关的知识,希望对你有一定的参考价值。
import java.awt.Container;import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
public class Choice extends JFrame
private JRadioButton button1 = null;
private JRadioButton button2 = null;
private JTextField field1 = null;
private JTextField field2 = null;
public Choice()
setSize(500,500);
setLocation(100,50);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setContentPane(getPanel());
setVisible(true);
private Container getPanel()
JPanel panel = new JPanel();
//控制比如按钮的位置的话,把按钮所在的面板(按钮添加到哪里,哪里的设置为null)布局设置为null,
panel.setLayout(null);
button1 = new JRadioButton("A");
button2 = new JRadioButton("B");
ButtonGroup group = new ButtonGroup();
field1 = new JTextField();
field2 = new JTextField();
group.add(button1);
group.add(button2);
//给按钮添加点击事件的监听
button1.addActionListener(new ActionListener()
@Override
public void actionPerformed(ActionEvent e)
field1.setText("选择了:A");
field2.setText("选择了:A");
);
button2.addActionListener(new ActionListener()
@Override
public void actionPerformed(ActionEvent e)
field1.setText("选择了:B");
field2.setText("选择了:B");
);
//设置按钮在面板的为主,第一是左上角的x坐标,第二个是左上角y左边,第三个是控件宽度,第四个是高度
button1.setBounds(60, 10, 40,40);
button2.setBounds(100, 10, 40,40);
field1.setBounds(60, 50, 80,20);
field2.setBounds(60, 80, 80,20);
panel.add(button2);
panel.add(button1);
panel.add(field2);
panel.add(field1);
return panel;
public static void main(String[] args)
new Choice();
参考技术A 可以绝对定位,大小调整宽和高追问
能不能具体点哦,谢谢
追答就是用样式制定它的坐标,
#box_relative
position: absolute;
left: 30px;
top: 20px;
这里的left和top 就指定了位置
java中怎么设置label的字体大小及颜色显示
就是在Windows窗口的显示(还有下划线)
Java设置label字体代码如下:ublic class SetColor extends JFrame
JLabel jlabel = new JLabel("颜色,大小");
public SetColor()
this.setLayout(null);
jlabel.setBounds(0, 0, 200, 40);
jlabel.setFont(new Font("",1,30));//设置字体大小
jlabel.setForeground(Color.BLUE);//设置字体颜色
this.add(jlabel);
this.setSize(200,200);
this.setVisible(true);
/**
* @param args
*/
public static void main(String[] args)
// TODO Auto-generated method stub
SetColor sc = new SetColor();
参考技术A 用netbeans开发工具直接拖拽就可以了,很多都是可视化的设置。 参考技术B att.setStyle(FontAttrib.BOLD);
其中att是字,FontAttrib.BOLD代表黑体,其他根据具体需要而定本回答被提问者采纳
以上是关于java,怎么设置label的位置和大小?的主要内容,如果未能解决你的问题,请参考以下文章