Пример #1
0
 private void ImportLegend(object sender, EventArgs e)
 {
     LegendExportAndImport import = new LegendExportAndImport(this.m_AppContext);
     string openFilePath = this.GetOpenFilePath();
     import.ImportLegendConfig(this.m_Study, this.dgvLegend, openFilePath);
 }
Пример #2
0
 private void ExportLegendAsXML(object sender, EventArgs e)
 {
     LegendExportAndImport import = new LegendExportAndImport(this.m_AppContext);
     string filepath = this.CreateFilePath(this.m_Group, this.m_Study);
     import.ExportLegendConfig(this.m_Study, filepath);
 }