c#解析字体错误

时间:2013-02-01 04:43:51

标签: c# parsing fonts

我有一个不使用System.Windows.Forms而是使用System.Windows.Controls的双窗口基本系统,其中一个创建了一个FontDialog,所以我不得不包含System.Windows.Forms,因为否则我不会这样做。能够拥有字体对话框。在另一个窗口中,我有一个RichTextBox,它应该使用在另一个窗口的FontDialog中选择的字体/大小/样式。

这是创建FontDialog的窗口的类:

public partial class Window1 : Window
{
    public FontDialog font;

    public Window1(String name)
    {
        InitializeComponent();
        this.textBox1.Text = name;
    }

    private void button2_Click(object sender, RoutedEventArgs e)
    {
        font = new FontDialog();
        font.ShowDialog();
    }
}

在这里我调用Window1并尝试使用它的字体。

private void button2_Click(object sender, RoutedEventArgs e)
{
    Window1 a = new Window1(this.name);
    a.ShowDialog();

    var cvt = new FontConverter();
    string s = cvt.ConvertToString(a.font.Font);

    Console.Out.WriteLine("Value is: " + s);

    System.Windows.Media.FontFamily g = (System.Windows.Media.FontFamily) cvt.ConvertFromString(s);

    if (g != null)
    {
         this.textBox2.FontFamily = g;
    }
}

它完全输出在FontDialog中选择的内容,但随后它会在第34行显示崩溃;此文本框架文件名为g;":

Value is: Microsoft Sans Serif; 8,25pt
'_.NetworkingGT_Incrementer.vshost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase.resources\v4.0_4.0.0.0_pt-BR_31bf3856ad364e35\WindowsBase.resources.dll'
A first chance exception of type 'System.ArgumentException' occurred in WindowsBase.dll
A first chance exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll
A first chance exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll
'_.NetworkingGT_Incrementer.vshost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.resources\v4.0_4.0.0.0_pt-BR_b77a5c561934e089\System.Xaml.resources.dll'
A first chance exception of type 'System.Xaml.XamlObjectWriterException' occurred in System.Xaml.dll
A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll

An unhandled exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll

1 个答案:

答案 0 :(得分:0)

解决:

var cvt = new FontConverter();

string s = cvt.ConvertToString(a.font.Font);

Console.Out.WriteLine("Value is: " + s);

System.Windows.Media.FontFamily g = new System.Windows.Media.FontFamily(s);

Console.Out.WriteLine("Value is: " + g.ToString());

this.textBox2.FontFamily = g;

两个输出相等。