关闭后无法重新打开ILNumerics图

时间:2014-01-27 13:18:25

标签: c# ilnumerics

我的程序使用ILNumerics绘图创建窗口的多个实例。在大多数情况下,我可以关闭窗口并打开新窗口。但是,如果我关闭所有窗口并尝试打开一个新窗口,程序将挂起。有什么建议吗?

private void PlotWindow_Load(object sender, EventArgs e)
{
    ILScene scene = new ILScene 
    {
        new ILPlotCube
        {
            new ILLinePlot(ILMath.tosingle(ILMath.randn(1, 10)))
        }
    };
    this.ilPanel.Scene = scene;
}

0 个答案:

没有答案