Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.Designer.cs @ 9926

Last change on this file since 9926 was 9890, checked in by ascheibe, 11 years ago

#2069

  • changed Solution from NamedItem to Item
  • adapted views to be only ItemViews
  • some more minor improvements
File size: 5.6 KB
Line 
1namespace HeuristicLab.Problems.Robocode {
2  partial class CodeNodeView {
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      this.prefixCode = new System.Windows.Forms.TextBox();
27      this.prefixLabel = new System.Windows.Forms.Label();
28      this.suffixLabel = new System.Windows.Forms.Label();
29      this.suffixCode = new System.Windows.Forms.TextBox();
30      this.splitContainer = new System.Windows.Forms.SplitContainer();
31      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
32      this.splitContainer.Panel1.SuspendLayout();
33      this.splitContainer.Panel2.SuspendLayout();
34      this.splitContainer.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // prefixCode
38      //
39      this.prefixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
40            | System.Windows.Forms.AnchorStyles.Left)
41            | System.Windows.Forms.AnchorStyles.Right)));
42      this.prefixCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
43      this.prefixCode.Location = new System.Drawing.Point(6, 16);
44      this.prefixCode.Multiline = true;
45      this.prefixCode.Name = "prefixCode";
46      this.prefixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
47      this.prefixCode.Size = new System.Drawing.Size(573, 111);
48      this.prefixCode.TabIndex = 3;
49      this.prefixCode.Validated += new System.EventHandler(this.prefixCode_Validated);
50      //
51      // prefixLabel
52      //
53      this.prefixLabel.AutoSize = true;
54      this.prefixLabel.Location = new System.Drawing.Point(3, 0);
55      this.prefixLabel.Name = "prefixLabel";
56      this.prefixLabel.Size = new System.Drawing.Size(33, 13);
57      this.prefixLabel.TabIndex = 4;
58      this.prefixLabel.Text = "Prefix";
59      //
60      // suffixLabel
61      //
62      this.suffixLabel.AutoSize = true;
63      this.suffixLabel.Location = new System.Drawing.Point(3, 0);
64      this.suffixLabel.Name = "suffixLabel";
65      this.suffixLabel.Size = new System.Drawing.Size(33, 13);
66      this.suffixLabel.TabIndex = 5;
67      this.suffixLabel.Text = "Suffix";
68      //
69      // suffixCode
70      //
71      this.suffixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
72            | System.Windows.Forms.AnchorStyles.Left)
73            | System.Windows.Forms.AnchorStyles.Right)));
74      this.suffixCode.Location = new System.Drawing.Point(6, 16);
75      this.suffixCode.Multiline = true;
76      this.suffixCode.Name = "suffixCode";
77      this.suffixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
78      this.suffixCode.Size = new System.Drawing.Size(573, 108);
79      this.suffixCode.TabIndex = 6;
80      this.suffixCode.Validated += new System.EventHandler(this.suffixCode_Validated);
81      //
82      // splitContainer
83      //
84      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
85            | System.Windows.Forms.AnchorStyles.Left)
86            | System.Windows.Forms.AnchorStyles.Right)));
87      this.splitContainer.Location = new System.Drawing.Point(6, 3);
88      this.splitContainer.Name = "splitContainer";
89      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
90      //
91      // splitContainer.Panel1
92      //
93      this.splitContainer.Panel1.Controls.Add(this.prefixLabel);
94      this.splitContainer.Panel1.Controls.Add(this.prefixCode);
95      //
96      // splitContainer.Panel2
97      //
98      this.splitContainer.Panel2.Controls.Add(this.suffixLabel);
99      this.splitContainer.Panel2.Controls.Add(this.suffixCode);
100      this.splitContainer.Size = new System.Drawing.Size(582, 261);
101      this.splitContainer.SplitterDistance = 130;
102      this.splitContainer.TabIndex = 7;
103      //
104      // CodeNodeView
105      //
106      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
107      this.Controls.Add(this.splitContainer);
108      this.Name = "CodeNodeView";
109      this.Size = new System.Drawing.Size(591, 267);
110      this.splitContainer.Panel1.ResumeLayout(false);
111      this.splitContainer.Panel1.PerformLayout();
112      this.splitContainer.Panel2.ResumeLayout(false);
113      this.splitContainer.Panel2.PerformLayout();
114      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
115      this.splitContainer.ResumeLayout(false);
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    private System.Windows.Forms.TextBox prefixCode;
123    private System.Windows.Forms.Label prefixLabel;
124    private System.Windows.Forms.Label suffixLabel;
125    private System.Windows.Forms.TextBox suffixCode;
126    private System.Windows.Forms.SplitContainer splitContainer;
127  }
128}
Note: See TracBrowser for help on using the repository browser.