Changeset 4812
- Timestamp:
- 11/16/10 14:38:42 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.Designer.cs
r4799 r4812 98 98 // 99 99 this.xTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 100 this.xTrackBar.Enabled = false; 100 101 this.xTrackBar.Location = new System.Drawing.Point(673, 313); 101 102 this.xTrackBar.Maximum = 100; … … 150 151 // yTrackBar 151 152 // 153 this.yTrackBar.Enabled = false; 152 154 this.yTrackBar.Location = new System.Drawing.Point(388, 3); 153 155 this.yTrackBar.Maximum = 100; … … 270 272 // 271 273 this.colorXAxisButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 274 this.colorXAxisButton.Enabled = false; 272 275 this.colorXAxisButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.DisplayInColor; 273 276 this.colorXAxisButton.Location = new System.Drawing.Point(605, 313); … … 291 294 // colorYAxisButton 292 295 // 296 this.colorYAxisButton.Enabled = false; 293 297 this.colorYAxisButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.DisplayInColor; 294 298 this.colorYAxisButton.Location = new System.Drawing.Point(251, 3); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
r4808 r4812 505 505 506 506 private void AxisComboBox_SelectedIndexChanged(object sender, EventArgs e) { 507 bool axisSelected = xAxisComboBox.SelectedIndex != -1 && yAxisComboBox.SelectedIndex != -1; 508 xTrackBar.Enabled = yTrackBar.Enabled = axisSelected; 509 colorXAxisButton.Enabled = colorYAxisButton.Enabled = axisSelected; 507 510 UpdateDataPoints(); 508 511 UpdateAxisLabels();
Note: See TracChangeset
for help on using the changeset viewer.