private void showRawDataToolStripMenuItem_Click(object sender, EventArgs e) { if (runMenuStrip.Tag == null) { return; } if (runMenuStrip.Tag.GetType() == typeof(ListViewItem)) { Run_Case rc = GetRepresentedCase(runMenuStrip.Tag as ListViewItem); if (rc != null) { RawDataForm rdf = new RawDataForm((runMenuStrip.Tag as ListViewItem).Group.Header, "All Raw Data", rc.Forces.FullText + "\r\n" + rc.StabDerivs.FullText + "\r\n" + rc.StripFullText); rdf.Show(); } } }
private void showRawDataToolStripMenuItem_Click(object sender, EventArgs e) { if (runMenuStrip.Tag == null) return; if (runMenuStrip.Tag.GetType() == typeof(ListViewItem)) { Run_Case rc = GetRepresentedCase(runMenuStrip.Tag as ListViewItem); if (rc != null) { RawDataForm rdf = new RawDataForm((runMenuStrip.Tag as ListViewItem).Group.Header, "All Raw Data", rc.Forces.FullText + "\r\n" + rc.StabDerivs.FullText + "\r\n" + rc.StripFullText); rdf.Show(); } } }