Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/ValueView.Designer.cs @ 4830

Last change on this file since 4830 was 4830, checked in by cneumuel, 13 years ago

#1215 worked on metaoptimization

File size: 4.7 KB
Line 
1namespace HeuristicLab.Problems.MetaOptimization.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.ViewType = null;
65      //
66      // clearValueButton
67      //
68      this.clearValueButton.Enabled = false;
69      this.clearValueButton.Image = ((System.Drawing.Image)(resources.GetObject("clearValueButton.Image")));
70      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
71      this.clearValueButton.Name = "clearValueButton";
72      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
73      this.clearValueButton.TabIndex = 1;
74      this.clearValueButton.UseVisualStyleBackColor = true;
75      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
76      //
77      // setValueButton
78      //
79      this.setValueButton.Image = ((System.Drawing.Image)(resources.GetObject("setValueButton.Image")));
80      this.setValueButton.Location = new System.Drawing.Point(6, 19);
81      this.setValueButton.Name = "setValueButton";
82      this.setValueButton.Size = new System.Drawing.Size(24, 24);
83      this.setValueButton.TabIndex = 0;
84      this.setValueButton.UseVisualStyleBackColor = true;
85      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
86      //
87      // ValueView
88      //
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
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.