Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/28/10 17:59:06 (14 years ago)
Author:
mkommend
Message:

Added possibility to open a RunCollectionBoxPlotView from the RunCollectionBubbleChartView context menu (ticket #1135).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs

    r4652 r4653  
    560560      return colorImage;
    561561    }
     562
     563    private void openBoxPlotViewToolStripMenuItem_Click(object sender, EventArgs e) {
     564      RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView();
     565      boxplotView.Content = this.Content;
     566      boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;
     567      boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem;
     568      boxplotView.Show();
     569    }
    562570    #endregion
    563571  }
Note: See TracChangeset for help on using the changeset viewer.