Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/12/09 00:53:40 (15 years ago)
Author:
mstoeger
Message:

Data Export (CSV) #588

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

    • Property svn:ignore
      •  

        old new  
        11*.suo
        22TestResults
         3_ReSharper.HeuristicLab
         4*.resharper
         5HeuristicLab.resharper.user
         6HeuristicLab.4.5.resharper.user
  • trunk/sources/HeuristicLab.Visualization/3.2/LineChart.cs

    r1608 r1781  
    55using System.Windows.Forms;
    66using HeuristicLab.Core;
     7using HeuristicLab.Visualization.DataExport;
    78using HeuristicLab.Visualization.Legend;
    89using HeuristicLab.Visualization.Options;
     
    263264    }
    264265
     266    private void exportToolStripMenuItem_Click(object sender, EventArgs e) {
     267      ExportDialog exportdlg = new ExportDialog();
     268      exportdlg.ShowDialog(this);
     269
     270      IExporter exporter = exportdlg.SelectedExporter;
     271
     272      if (exporter != null)
     273        exporter.Export(model);
     274    }
     275
    265276    public void OnDataRowChanged(IDataRow row) {
    266277      RowEntry rowEntry = rowToRowEntry[row];
     
    531542
    532543      if (e.Button == MouseButtons.Right) {
    533         contextMenuStrip1.Show(PointToScreen(e.Location));
     544        contextMenu.Show(PointToScreen(e.Location));
    534545      } else if (e.Button == MouseButtons.Left) {
    535546        if (ModifierKeys == Keys.None) {
Note: See TracChangeset for help on using the changeset viewer.