Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Views/MOFrontScatterPlotView.Designer.cs @ 14111

Last change on this file since 14111 was 14111, checked in by mkommend, 8 years ago

#1087: Change plugin and folder name from HeuristicLab.Problems.MultiObjectiveTestFunctions to HeuristicLab.Problems.Testfunctions.MultiObjective and adapted namespaces and projects accordingly.

File size: 6.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
22  partial class MOQualitiesScatterPlotView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.components = new System.ComponentModel.Container();
47      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
49      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
50      this.menuStrip1 = new System.Windows.Forms.MenuStrip();
51      this.chooseDimensionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.chooseYDimensionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
55      this.menuStrip1.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // chart
59      //
60      chartArea2.Name = "ChartArea";
61      this.chart.ChartAreas.Add(chartArea2);
62      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
63      legend2.Alignment = System.Drawing.StringAlignment.Center;
64      legend2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
65      legend2.Name = "Default";
66      this.chart.Legends.Add(legend2);
67      this.chart.Location = new System.Drawing.Point(0, 42);
68      this.chart.Margin = new System.Windows.Forms.Padding(6);
69      this.chart.Name = "chart";
70      this.chart.Size = new System.Drawing.Size(1054, 712);
71      this.chart.TabIndex = 1;
72      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
73      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
74      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
75      //
76      // menuStrip1
77      //
78      this.menuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
79      this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
80            this.chooseDimensionToolStripMenuItem,
81            this.chooseYDimensionToolStripMenuItem});
82      this.menuStrip1.Location = new System.Drawing.Point(0, 0);
83      this.menuStrip1.Name = "menuStrip1";
84      this.menuStrip1.Size = new System.Drawing.Size(1054, 42);
85      this.menuStrip1.TabIndex = 2;
86      this.menuStrip1.Text = "menuStrip1";
87      this.menuStrip1.ShowItemToolTips = true;
88      //
89      // chooseDimensionToolStripMenuItem
90      //
91      this.chooseDimensionToolStripMenuItem.Name = "chooseDimensionToolStripMenuItem";
92      this.chooseDimensionToolStripMenuItem.Size = new System.Drawing.Size(253, 38);
93      this.chooseDimensionToolStripMenuItem.Text = "Objective 0";
94      this.chooseDimensionToolStripMenuItem.ToolTipText = "Choose X-Dimension";
95      //
96      // chooseYDimensionToolStripMenuItem
97      //
98      this.chooseYDimensionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
99            this.testToolStripMenuItem});
100      this.chooseYDimensionToolStripMenuItem.Name = "chooseYDimensionToolStripMenuItem";
101      this.chooseYDimensionToolStripMenuItem.Size = new System.Drawing.Size(252, 38);
102      this.chooseYDimensionToolStripMenuItem.Text = "Objective 1";
103      this.chooseYDimensionToolStripMenuItem.ToolTipText = "Choose Y-Dimension";
104      //
105      // testToolStripMenuItem
106      //
107      this.testToolStripMenuItem.Name = "testToolStripMenuItem";
108      this.testToolStripMenuItem.Size = new System.Drawing.Size(269, 38);
109      this.testToolStripMenuItem.Text = "Test";
110      //
111      // MOQualitiesScatterPlotView
112      //
113      this.AllowDrop = true;
114      this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
115      this.Controls.Add(this.chart);
116      this.Controls.Add(this.menuStrip1);
117      this.Margin = new System.Windows.Forms.Padding(6);
118      this.Name = "MOQualitiesScatterPlotView";
119      this.Size = new System.Drawing.Size(1054, 754);
120      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
121      this.menuStrip1.ResumeLayout(false);
122      this.menuStrip1.PerformLayout();
123      this.ResumeLayout(false);
124      this.PerformLayout();
125
126    }
127
128    #endregion
129
130    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
131    private System.Windows.Forms.MenuStrip menuStrip1;
132    private System.Windows.Forms.ToolStripMenuItem chooseDimensionToolStripMenuItem;
133    private System.Windows.Forms.ToolStripMenuItem chooseYDimensionToolStripMenuItem;
134    private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem;
135  }
136}
Note: See TracBrowser for help on using the repository browser.