字体的定义在它的控件源代码中, aspx页面是看不到的
你打开FreeTextBox.cs, 285行开始 不过我这重新编译有问题, Common\PostProcessor.cs的一个字符串数组定义是乱码 /// <summary>
/// A list of fonts for the font drop down.
/// </summary>
[
CategoryAttribute("Toolbar Items")
]
public string[] FontFacesMenuList {
get { 
object savedState = this.ViewState["FontFacesMenuList"];
return (savedState == null) ?
new string[] {"Arial","Courier New","Garamond","Georgia","Tahoma","Times New Roman","Verdana"} :
(string[]) savedState;
}
set {
ViewState["FontFacesMenuList"] = value;
}
}