Exemplo n.º 1
0
        //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();
        }
Exemplo n.º 2
0
 //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();
 }