//attractor view private void attractorToolStripMenuItem_Click(object sender, EventArgs e) { var frmAttractor = new frmAttractor(); globalFrmAttractor = frmAttractor; frmAttractor.MdiParent = this; if (fileLength > 0) { frmAttractor.Plot(ref fileBufferArray, fileLength, 0); } frmAttractor.Show(); }
//attractor view private void attractorToolStripMenuItem_Click(object sender, EventArgs e) { var frmAttractor = new frmAttractor(); globalFrmAttractor = frmAttractor; frmAttractor.MdiParent = this; if (fileLength > 0) frmAttractor.Plot(ref fileBufferArray, fileLength, 0); frmAttractor.Show(); }