我有一个应用程序,我的用户更改不同标签等的字体和字体颜色,并将它们保存到文件但我需要能够将指定标签的字体转换为要写入文件的字符串,并且然后,当他们打开该文件时,我的程序会将该字符串转换回字体对象。如何才能做到这一点?我没有找到任何能说明如何完成它的地方。
谢谢
巴尔
答案 0 :(得分:30)
使用System.Drawing.FontConverter类可以很容易地从字体到字符串来回返回。例如:
var cvt = new FontConverter();
string s = cvt.ConvertToString(this.Font);
Font f = cvt.ConvertFromString(s) as Font;
答案 1 :(得分:4)
您可以serialize文件的字体类。
有关如何操作的详细信息,请参阅this MSDN article。
序列化:
private void SerializeFont(Font fn, string FileName)
{
using(Stream TestFileStream = File.Create(FileName))
{
BinaryFormatter serializer = new BinaryFormatter();
serializer.Serialize(TestFileStream, fn);
TestFileStream.Close();
}
}
反序列化:
private Font DeSerializeFont(string FileName)
{
if (File.Exists(FileName))
{
using(Stream TestFileStream = File.OpenRead(FileName))
{
BinaryFormatter deserializer = new BinaryFormatter();
Font fn = (Font)deserializer.Deserialize(TestFileStream);
TestFileStream.Close();
}
return fn;
}
return null;
}
答案 2 :(得分:2)
非常简单,如果你想让它在文件中可读:
class Program
{
static void Main(string[] args)
{
Label someLabel = new Label();
someLabel.Font = new Font("Arial", 12, FontStyle.Bold | FontStyle.Strikeout | FontStyle.Italic);
var fontString = FontToString(someLabel.Font);
Console.WriteLine(fontString);
File.WriteAllText(@"D:\test.txt", fontString);
var loadedFontString = File.ReadAllText(@"D:\test.txt");
var font = StringToFont(loadedFontString);
Console.WriteLine(font.ToString());
Console.ReadKey();
}
public static string FontToString(Font font)
{
return font.FontFamily.Name + ":" + font.Size + ":" + (int)font.Style;
}
public static Font StringToFont(string font)
{
string[] parts = font.Split(':');
if (parts.Length != 3)
throw new ArgumentException("Not a valid font string", "font");
Font loadedFont = new Font(parts[0], float.Parse(parts[1]), (FontStyle)int.Parse(parts[2]));
return loadedFont;
}
}
否则序列化是可行的方法。
答案 3 :(得分:0)
首先,您可以使用以下文章来枚举系统字体。
public void FillFontComboBox(ComboBox comboBoxFonts)
{
// Enumerate the current set of system fonts,
// and fill the combo box with the names of the fonts.
foreach (FontFamily fontFamily in Fonts.SystemFontFamilies)
{
// FontFamily.Source contains the font family name.
comboBoxFonts.Items.Add(fontFamily.Source);
}
comboBoxFonts.SelectedIndex = 0;
}
创建字体:
Font font = new Font( STRING, 6F, FontStyle.Bold );
用它来设置字体样式等....
Label label = new Label();
. . .
label.Font = new Font( label.Font, FontStyle.Bold );
答案 4 :(得分:0)
使用此代码根据名称和颜色信息创建字体:
Font myFont = new System.Drawing.Font(<yourfontname>, 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
Color myColor = System.Drawing.Color.FromArgb(<yourcolor>);