的个人主页 http://faculty.dlut.edu.cn/dechuans/zh_CN/index.htm
发布时间: 2021-09-04 点击次数:
有开源的库可以使用真的是很开心
https://www.nuget.org/packages/WpfMath/0.11.0
静态显示公式比较简单,引用WpfMath库以后就可以使用了,但是要注意在引用的属性里将“复制到本地”指定为Yes,否则会出现找不到文件的错误。
下面是一段示例代码,equation是自己定义的名字:
<Window ... xmlns:equation="clr-namespace:WpfMath.Controls;assembly=WpfMath">
<equation:FormulaControl Formula="\left(x^2 + 2 \cdot x + 2\right) = 0" />
Window>