Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding.Views/3.3/ValueConfigurationViews/ValueView.Designer.cs @ 8524

Last change on this file since 8524 was 8524, checked in by jkarder, 12 years ago

#1853:

  • added problem instance selection to CreateExperimentDialog
  • adopted experiment creation
  • minor code improvements
File size: 5.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
21
22namespace HeuristicLab.Encodings.ParameterConfigurationEncoding.Views {
23  partial class ValueView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ValueView));
48      this.valueGroupBox = new System.Windows.Forms.GroupBox();
49      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      this.clearValueButton = new System.Windows.Forms.Button();
51      this.setValueButton = new System.Windows.Forms.Button();
52      this.valueGroupBox.SuspendLayout();
53      this.SuspendLayout();
54      //
55      // valueGroupBox
56      //
57      this.valueGroupBox.AllowDrop = true;
58      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59                  | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.valueGroupBox.Controls.Add(this.valueViewHost);
62      this.valueGroupBox.Controls.Add(this.clearValueButton);
63      this.valueGroupBox.Controls.Add(this.setValueButton);
64      this.valueGroupBox.Location = new System.Drawing.Point(0, 0);
65      this.valueGroupBox.Name = "valueGroupBox";
66      this.valueGroupBox.Size = new System.Drawing.Size(482, 274);
67      this.valueGroupBox.TabIndex = 7;
68      this.valueGroupBox.TabStop = false;
69      this.valueGroupBox.Text = "Value";
70      //
71      // valueViewHost
72      //
73      this.valueViewHost.AllowDrop = true;
74      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.valueViewHost.Caption = "View";
78      this.valueViewHost.Content = null;
79      this.valueViewHost.Enabled = false;
80      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
81      this.valueViewHost.Name = "valueViewHost";
82      this.valueViewHost.ReadOnly = false;
83      this.valueViewHost.Size = new System.Drawing.Size(470, 219);
84      this.valueViewHost.TabIndex = 3;
85      this.valueViewHost.ViewsLabelVisible = false;
86      this.valueViewHost.ViewType = null;
87      //
88      // clearValueButton
89      //
90      this.clearValueButton.Enabled = false;
91      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
92      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
93      this.clearValueButton.Name = "clearValueButton";
94      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
95      this.clearValueButton.TabIndex = 1;
96      this.clearValueButton.UseVisualStyleBackColor = true;
97      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
98      //
99      // setValueButton
100      //
101      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
102      this.setValueButton.Location = new System.Drawing.Point(6, 19);
103      this.setValueButton.Name = "setValueButton";
104      this.setValueButton.Size = new System.Drawing.Size(24, 24);
105      this.setValueButton.TabIndex = 0;
106      this.setValueButton.UseVisualStyleBackColor = true;
107      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
108      //
109      // ValueView
110      //
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
112      this.Controls.Add(this.valueGroupBox);
113      this.Name = "ValueView";
114      this.Size = new System.Drawing.Size(482, 274);
115      this.valueGroupBox.ResumeLayout(false);
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    protected System.Windows.Forms.GroupBox valueGroupBox;
123    protected MainForm.WindowsForms.ViewHost valueViewHost;
124    protected System.Windows.Forms.Button clearValueButton;
125    protected System.Windows.Forms.Button setValueButton;
126  }
127}
Note: See TracBrowser for help on using the repository browser.