C#中的文字粗体

时间:2014-06-03 17:14:56

标签: c# asp.net text-formatting

我使用Dropdownlist" Regular"," Bold"," italic"在asp.net中格式化文本。 但无法粗体或斜体text.plz帮助如何执行它。 我已准备好阅读本文

http://msdn.microsoft.com/en-us/library/system.drawing.font.bold.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-2

 protected void DropDownList5_SelectedIndexChanged(object sender, EventArgs e)
 {
     /*string[] fontStyle = new string[] {"Regular","Bold","italic"};*/

     if (DropDownList5.SelectedIndex == 0)
         Label11.Font = new Font(FontFamily.GenericSansSerif,12.0F, FontStyle.Bold);
     else if (DropDownList5.SelectedIndex == 1)
         Label11.Font=new Font(FontStyle.Italic);
 }

错误1 ' System.Drawing.Font'不包含带有1个参数的构造函数

错误2 属性或索引器' System.Web.UI.WebControls.WebControl.Font'无法分配 - 它是只读的

错误3 无法隐式转换类型' System.Drawing.Font' to' System.Web.UI.WebControls.FontInfo'  错误4 ' System.Drawing.Font'不包含带有1个参数的构造函数

0 个答案:

没有答案