Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/29/11 04:17:02 (12 years ago)
Author:
swagner
Message:

Adapted DataTableVisualPropertiesDialog, DataTableVisualPropertiesControl, and DataRowVisualPropertiesControl according to the HL GUI standards (#1724)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableHistoryView.cs

    r7216 r7244  
    2020#endregion
    2121
    22 using System.Linq;
     22using System.Collections.Generic;
    2323using System.Windows.Forms;
    2424using HeuristicLab.Core.Views;
    2525using HeuristicLab.MainForm;
    26 using System.Collections.Generic;
    2726
    2827namespace HeuristicLab.Analysis.Views {
     
    3938      if (current == null) return;
    4039      using (DataTableVisualPropertiesDialog dialog = new DataTableVisualPropertiesDialog(current)) {
    41         if (dialog.ShowDialog() != DialogResult.OK) return;
     40        if (dialog.ShowDialog(this) != DialogResult.OK) return;
    4241        HashSet<string> modifiedDisplayNames = new HashSet<string>(dialog.RowsWithModifiedDisplayNames);
    4342        foreach (DataTable dt in Content) {
     
    5453      }
    5554    }
    56 
    5755  }
    5856}
Note: See TracChangeset for help on using the changeset viewer.