java中怎么设置label的字体大小及颜色显示

java中怎么设置label的字体大小及颜色显示,第1张

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()

}}

首先,在窗体上画出一个标签,然后选中一个单选按钮,就是optionButton的那个,在标签里面画,你需要几个就在睁尺橡标签里悉旁面画几个,、困则然后,我所做出的程序和截图是这样的

Private Sub Option1_Click()

If Option1.Value = True Then

Text1.Font = "黑体"

End If

End Sub

Private Sub Option2_Click()

If Option2.Value = True Then

Text1.Font = "宋体"

End If

End Sub


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12238024.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存