如何设置html字体
设置字体
html
body
A heading
A paragraph
/body
/html
设置文字尺寸
html
body
A heading
A paragraph
/body
/html
设置字体颜色
html
body
A heading
A paragraph
/body
/html
设置文字的字体、字体尺寸、字体颜色
html
body
hello world
/body
/html
如何设置Java对话框字体
两种办法可以解决:
一、使用简单的HTML语法可以控制文字的大小:
二、(推荐!)先看参数
JOptionPane.showMessageDialog(Component, Object, String, int)第二个参数为Object,我们可以用一个JLabel来替代以前的String,给JLabel一个Font就OK了。
import javax.swing.*
import java.awt.*
import java.awt.event.*
import java.awt.event.ActionEvent
public class Test {
JFrame frame
JButton button
Font font
public Test(){
font = new Font("宋体",0,12)
UIManager.put("Button.font",font)
UIManager.put("Label.font",font)
frame = new JFrame("Test")
button = new JButton("d出")
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
JLabel l = new JLabel("用户名或密码错误 请重新输入")
JOptionPane.showMessageDialog(frame,l,"错误",JOptionPane.ERROR_MESSAGE)
}
})
frame.getContentPane().add(button)
frame.setSize(300, 200)
frame.setVisible(true)
}
public static void main(String[] args) {
new Test()
}
}
这样:
btn.frame = CGRectMake(x, y, width, height)
[btn setTitle: @"search" forState: UIControlStateNormal]
//设置按钮上的自体的大小
//[btn setFont: [UIFont systemFontSize: 14.0]] //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法
//应该使用
btn.titleLabel.font = [UIFont systemFontOfSize: 14.0]
[btn seBackgroundColor: [UIColor blueColor]]
//最后将按钮加入到指定视图superView
[superView addSubview: btn]
扩展资料:注意事项
创建按钮的两种方法:
1、动态创建
btnfont = [UIButton buttonWithType:UIButtonTypeRoundedRect]
[btnfont setFrame:CGRectMake(100, 10, 120, 40)]
[btnfont addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside]
[btnfont setTitle:@"字体" forState:UIControlStateNormal]
btnfont.backgroundColor=[UIColor clearColor]
[self.view addSubview:btnfont]
2、在xib文件中已经创建好,通过tag获取按钮
UIButton *testButton= (UIButton*)[self.view viewWithTag:100]
[testButton addTarget:self action:@selector(test:)
forControlEvents:UIControlEventTouchUpInside]
<style type="text/css"><!--
.FONT1 {
font-family: "华文彩云"
}
-->
</style>
<input name="" type="button" value="提交" class="FONT1">
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)