System.Drawing.FontStyle是指定字符显示样式的变量,有的时候这个变量需要存在配置文件中,那就要转化为字符串string类型。这个转换很简单,只要.ToString()就可以了。
FontStyle myFontStyle = FontStyle.Bold; string myString = myFontStyle.ToString()
但是如果要字符串转换为FontStyle就不这么简单了。可以用以下代码完成:
string myString = FontStyle.Bold.ToString(); FontStyle myFontStyle = (FontStyle)Enum.Parse(typeof(FontStyle), myString, false); //最后的参数为是否忽略大小写