private void openBoxPlotViewToolStripMenuItem_Click(object sender, EventArgs e) { RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView(); boxplotView.Content = this.Content; boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem; boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem; boxplotView.Show(); }
private void openBoxPlotToolStripMenuItem_Click(object sender, EventArgs e) { RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView(); boxplotView.Content = Content; boxplotView.SetXAxis(groupComboBox.SelectedItem.ToString()); boxplotView.SetYAxis(resultComboBox.SelectedItem.ToString()); boxplotView.Show(); }