Changeset 12077
- Timestamp:
- 02/25/15 18:59:30 (10 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r12012 r12077 123 123 } 124 124 125 pr ivatevoid UpdateData() {125 protected virtual void UpdateData() { 126 126 rowsTextBox.Text = Content.Rows.ToString(); 127 127 rowsTextBox.Enabled = true; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r12012 r12077 122 122 if (InvokeRequired) 123 123 Invoke(new EventHandler(Content_Reset), sender, e); 124 else {124 else if (!suppressUpdates) { 125 125 UpdateDataPoints(); 126 126 UpdateAxisLabels(); … … 376 376 Axis yAxis = this.chart.ChartAreas[BoxPlotChartAreaName].AxisY; 377 377 int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count(); 378 //mkommend: combobox.SelectedIndex could not be used as this changes during ho overing over possible values378 //mkommend: combobox.SelectedIndex could not be used as this changes during hovering over possible values 379 379 var xSAxisSelectedIndex = xAxisValue == null ? 0 : xAxisComboBox.Items.IndexOf(xAxisValue); 380 380 var ySAxisSelectedIndex = yAxisValue == null ? 0 : xAxisComboBox.Items.IndexOf(yAxisValue); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs
r12012 r12077 262 262 263 263 private void Content_Reset(object sender, EventArgs e) { 264 if (suppressUpdates) return; 264 265 if (InvokeRequired) 265 266 Invoke(new EventHandler(Content_Reset), sender, e); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.cs
r12012 r12077 117 117 } 118 118 119 protected override void UpdateData() { 120 if (suppressUpdates) return; 121 base.UpdateData(); 122 } 123 119 124 protected override void UpdateColumnHeaders() { 120 125 HashSet<string> visibleColumnNames = new HashSet<string>(dataGridView.Columns.OfType<DataGridViewColumn>() … … 145 150 else { 146 151 suppressUpdates = Content.UpdateOfRunsInProgress; 147 if (!suppressUpdates) UpdateRowAttributes(); 152 if (!suppressUpdates) { 153 UpdateRowAttributes(); 154 UpdateData(); 155 } 148 156 } 149 157 }
Note: See TracChangeset
for help on using the changeset viewer.