Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1853:

  • created branch for ParameterConfigurationEncoding
  • added CreateExperimentDialog that uses the extracted encoding
File size: 4.7 KB
Line 
1namespace HeuristicLab.Encodings.ParameterConfigurationEncoding.Views {
2  partial class ValueView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ValueView));
27      this.valueGroupBox = new System.Windows.Forms.GroupBox();
28      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
29      this.clearValueButton = new System.Windows.Forms.Button();
30      this.setValueButton = new System.Windows.Forms.Button();
31      this.valueGroupBox.SuspendLayout();
32      this.SuspendLayout();
33      //
34      // valueGroupBox
35      //
36      this.valueGroupBox.AllowDrop = true;
37      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
38                  | System.Windows.Forms.AnchorStyles.Left)
39                  | System.Windows.Forms.AnchorStyles.Right)));
40      this.valueGroupBox.Controls.Add(this.valueViewHost);
41      this.valueGroupBox.Controls.Add(this.clearValueButton);
42      this.valueGroupBox.Controls.Add(this.setValueButton);
43      this.valueGroupBox.Location = new System.Drawing.Point(0, 0);
44      this.valueGroupBox.Name = "valueGroupBox";
45      this.valueGroupBox.Size = new System.Drawing.Size(482, 274);
46      this.valueGroupBox.TabIndex = 7;
47      this.valueGroupBox.TabStop = false;
48      this.valueGroupBox.Text = "Value";
49      //
50      // valueViewHost
51      //
52      this.valueViewHost.AllowDrop = true;
53      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54                  | System.Windows.Forms.AnchorStyles.Left)
55                  | System.Windows.Forms.AnchorStyles.Right)));
56      this.valueViewHost.Caption = "View";
57      this.valueViewHost.Content = null;
58      this.valueViewHost.Enabled = false;
59      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
60      this.valueViewHost.Name = "valueViewHost";
61      this.valueViewHost.ReadOnly = false;
62      this.valueViewHost.Size = new System.Drawing.Size(470, 219);
63      this.valueViewHost.TabIndex = 3;
64      this.valueViewHost.ViewsLabelVisible = false;
65      this.valueViewHost.ViewType = null;
66      //
67      // clearValueButton
68      //
69      this.clearValueButton.Enabled = false;
70      this.clearValueButton.Image = ((System.Drawing.Image)(resources.GetObject("clearValueButton.Image")));
71      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
72      this.clearValueButton.Name = "clearValueButton";
73      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
74      this.clearValueButton.TabIndex = 1;
75      this.clearValueButton.UseVisualStyleBackColor = true;
76      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
77      //
78      // setValueButton
79      //
80      this.setValueButton.Image = ((System.Drawing.Image)(resources.GetObject("setValueButton.Image")));
81      this.setValueButton.Location = new System.Drawing.Point(6, 19);
82      this.setValueButton.Name = "setValueButton";
83      this.setValueButton.Size = new System.Drawing.Size(24, 24);
84      this.setValueButton.TabIndex = 0;
85      this.setValueButton.UseVisualStyleBackColor = true;
86      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
87      //
88      // ValueView
89      //
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
91      this.Controls.Add(this.valueGroupBox);
92      this.Name = "ValueView";
93      this.Size = new System.Drawing.Size(482, 274);
94      this.valueGroupBox.ResumeLayout(false);
95      this.ResumeLayout(false);
96
97    }
98
99    #endregion
100
101    protected System.Windows.Forms.GroupBox valueGroupBox;
102    protected MainForm.WindowsForms.ViewHost valueViewHost;
103    protected System.Windows.Forms.Button clearValueButton;
104    protected System.Windows.Forms.Button setValueButton;
105  }
106}
Note: See TracBrowser for help on using the repository browser.