My programs creates several instances of a window with a ILNumerics plot. In most cases, I am able to close the windows and open new ones. However, if I close all the windows and try to open a new one, the program hangs. Any suggestions why?
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;
}