我使用Dropdownlist" Regular"," Bold"," italic"在asp.net中格式化文本。 但无法粗体或斜体text.plz帮助如何执行它。 我已准备好阅读本文
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个参数的构造函数