无法加载文件或程序集'WpfMath或其依赖项之一。该系统找不到指定的文件

时间:2019-12-16 10:55:03

标签: c# wpf thumb

我有一个“测试”类,我使用WpfMath呈现数学公式。 测试类别为

using System;
using System.Windows.Controls.Primitives;
using WpfMath;
namespace WPFGraph
{
    public class Test:Thumb
    {
        WpfMath.TexFormulaParser parser;

        public Test()
        {
            parser = new TexFormulaParser();
        }
    }
}

但是当我在xaml窗口中使用此类时:

<local:Test Width="250" Height="100"/>

我遇到设计师错误:

  

无法加载文件或程序集'WpfMath,版本= 0.6.0.0,   文化=中性,PublicKeyToken =空”或其依赖项之一。的   系统找不到指定的文件。

但是在运行时没有错误。(但是,如果我在类中删除了“ parser = new TexFormulaParser();”,一切都会好的)。

image of error

0 个答案:

没有答案