//后台修改label控件字体

protected void Button1_Click(object sender, EventArgs e)

{
  this.Label1.Font.Size = 55;//方法一:设置字体大小
  this.Label1.Font.Size = FontUnit.Larger;//方法二:设置字体大小
  this.Label1.Font.Size = FontUnit.Point(42);//方法三:设置字体大小,单位是pt磅
  this.Label1.Font.Bold = true;
  this.Label1.Font.Name = "楷体, 楷体_GB2312, SimKai";//楷体
  this.Label1.ForeColor = System.Drawing.Color.Red;
}
 
//前台修改label控件字体,可通过style属性控制
<asp:Label ID="LabelTitle" runat="server" style="font-size:24px;font-weight:bold;line-height:30px;"></asp:Label>

相关文章:

  • 2021-03-31
  • 2022-01-20
  • 2021-10-31
  • 2021-05-15
  • 2021-10-23
  • 2022-12-23
  • 2021-07-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
  • 2021-04-16
相关资源
相似解决方案