Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10028 was 10028, checked in by jkarder, 11 years ago

#2069:

  • merged IfStat and ElseStat into IfThenElseStat
  • changed the font of the suffixCode text box in the CodeNodeView
File size: 5.7 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.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
75      this.suffixCode.Location = new System.Drawing.Point(6, 16);
76      this.suffixCode.Multiline = true;
77      this.suffixCode.Name = "suffixCode";
78      this.suffixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
79      this.suffixCode.Size = new System.Drawing.Size(573, 108);
80      this.suffixCode.TabIndex = 6;
81      this.suffixCode.Validated += new System.EventHandler(this.suffixCode_Validated);
82      //
83      // splitContainer
84      //
85      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86            | System.Windows.Forms.AnchorStyles.Left)
87            | System.Windows.Forms.AnchorStyles.Right)));
88      this.splitContainer.Location = new System.Drawing.Point(6, 3);
89      this.splitContainer.Name = "splitContainer";
90      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
91      //
92      // splitContainer.Panel1
93      //
94      this.splitContainer.Panel1.Controls.Add(this.prefixLabel);
95      this.splitContainer.Panel1.Controls.Add(this.prefixCode);
96      //
97      // splitContainer.Panel2
98      //
99      this.splitContainer.Panel2.Controls.Add(this.suffixLabel);
100      this.splitContainer.Panel2.Controls.Add(this.suffixCode);
101      this.splitContainer.Size = new System.Drawing.Size(582, 261);
102      this.splitContainer.SplitterDistance = 130;
103      this.splitContainer.TabIndex = 7;
104      //
105      // CodeNodeView
106      //
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
108      this.Controls.Add(this.splitContainer);
109      this.Name = "CodeNodeView";
110      this.Size = new System.Drawing.Size(591, 267);
111      this.splitContainer.Panel1.ResumeLayout(false);
112      this.splitContainer.Panel1.PerformLayout();
113      this.splitContainer.Panel2.ResumeLayout(false);
114      this.splitContainer.Panel2.PerformLayout();
115      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
116      this.splitContainer.ResumeLayout(false);
117      this.ResumeLayout(false);
118
119    }
120
121    #endregion
122
123    private System.Windows.Forms.TextBox prefixCode;
124    private System.Windows.Forms.Label prefixLabel;
125    private System.Windows.Forms.Label suffixLabel;
126    private System.Windows.Forms.TextBox suffixCode;
127    private System.Windows.Forms.SplitContainer splitContainer;
128  }
129}
Note: See TracBrowser for help on using the repository browser.