Beispiel #1
0
 private void importLegendToolStripMenuItem_Click(object sender, EventArgs e)
 {
     LegendExportAndImport import = new LegendExportAndImport(this.m_SubSysInterface);
     string openFilePath = this.GetOpenFilePath();
     import.ImportLegendConfig(this.m_Study, this.dgvLegend, this.m_Color, openFilePath);
     this.m_PredictionStudyManager.IsNeedAddTreeNode = true;
 }
Beispiel #2
0
 private void exportLegendToolStripMenuItem_Click(object sender, EventArgs e)
 {
     LegendExportAndImport import = new LegendExportAndImport(this.m_SubSysInterface);
     string filepath = this.CreateFilePath(this.m_Group, this.m_Study);
     import.ExportLegendConfig(this.m_Group, this.m_Study, filepath);
 }