码迷,mamicode.com
首页 > Web开发 > 详细

asp.net中label控件设置字体大小

时间:2018-05-07 13:49:34      阅读:855      评论:0      收藏:0      [点我收藏+]

标签:key   object   ring   space   code   col   end   字体大小   span   

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;
}

asp.net中label控件设置字体大小

标签:key   object   ring   space   code   col   end   字体大小   span   

原文地址:https://www.cnblogs.com/694579350liuq/p/9001711.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!