Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10735


Ignore:
Timestamp:
04/09/14 12:45:55 (10 years ago)
Author:
psteiner
Message:

set datagridview as start view

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.cs

    r10713 r10735  
    8787        this.cbAttr.SelectedItem = this.cbAttr.Items[Content.ConstraintColumn];
    8888
    89         if (Content.ConstraintColumn != null)
    90         {
     89        //if (Content.ConstraintColumn != null)
     90        //{
    9191          cbAttr.SelectedItem = Content.ConstraintColumn;
    9292          if (Content.ConstraintData != null)
     
    9494          else
    9595            this.Content_ConstraintColumnChanged(cbAttr, EventArgs.Empty);
    96         }
     96        //}
    9797      }
    9898    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs

    r10709 r10735  
    5454        var filterLogic = new FilterLogic(data);
    5555
     56       
     57
    5658        var viewShortcuts = new ItemCollection<IViewShortcut>() {
    5759          new DataGridContent(dataGridLogic, manipulationLogic, filterLogic),
     
    6567
    6668        viewShortcutCollectionView.Content = viewShortcuts.AsReadOnly();
     69
     70        viewShortcutCollectionView.ItemsListView.Items[0].Selected = true;
     71        viewShortcutCollectionView.Select();
     72
    6773      } else {
    6874        viewShortcutCollectionView.Content = null;
Note: See TracChangeset for help on using the changeset viewer.