参考光庆大神的示例https://blog.csdn.net/sdlgq/article/details/128902966 写了一个小工具,很简单就是显示一个曲线图。
我们自己测试的时候没问题,但是在同事的电脑上使用就报错了:
{Error}:
{File}: lib\godking\scottPlot\_.aardio
{Line}: #79
{Error}: Invalid argument!
我找到了这个文件,第79行是这样的:
.....
75 namespace godking
76 class scottPlot{
77 ctor(winform){
78 var chart = ..ScottPlot.FormsPlot();
79 if winform ..dotNet.setParent(chart,winform);
80 chart.Configuration.Quality = 2;
81 chart.MouseEnter = function(){
82 if !..mouse_in {
83 ..mouse_in = true;
84 if ..onMouseEnter ..onMouseEnter();
85 }
86 }
......
请各位大神帮忙看下,这个是缺少了什么库吗?还是什么原因?