Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/12/08 08:00:33 (16 years ago)
Author:
gkronber
Message:

removed export button and attached the contextMenuStrip directly to the dataGridView instead of each column. (preparation for #143)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/DatasetView.cs

    r232 r233  
    7272          dataGridView.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
    7373          dataGridView.Columns[i].Name = GetColumnName(i);
    74           dataGridView.Columns[i].ContextMenuStrip = contextMenuStrip;
    7574        }
    7675        dataGridView.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect;
     
    105104      double result;
    106105      return element != null && double.TryParse(element, out result);
    107     }
    108 
    109     private void exportButton_Click(object sender, EventArgs e) {
    110       throw new NotImplementedException();
    111106    }
    112107
Note: See TracChangeset for help on using the changeset viewer.