[2250] | 1 | namespace HeuristicLab.MainForm.Test {
|
---|
| 2 | partial class EditorView {
|
---|
| 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.label1 = new System.Windows.Forms.Label();
|
---|
[2254] | 27 | this.ChangeStateButton = new System.Windows.Forms.Button();
|
---|
[2250] | 28 | this.SuspendLayout();
|
---|
| 29 | //
|
---|
| 30 | // label1
|
---|
| 31 | //
|
---|
| 32 | this.label1.AutoSize = true;
|
---|
| 33 | this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
|
---|
| 34 | this.label1.Location = new System.Drawing.Point(52, 73);
|
---|
| 35 | this.label1.Name = "label1";
|
---|
| 36 | this.label1.Size = new System.Drawing.Size(57, 13);
|
---|
| 37 | this.label1.TabIndex = 0;
|
---|
| 38 | this.label1.Text = "EditorForm";
|
---|
| 39 | //
|
---|
[2254] | 40 | // ChangeStateButton
|
---|
| 41 | //
|
---|
| 42 | this.ChangeStateButton.Location = new System.Drawing.Point(34, 100);
|
---|
| 43 | this.ChangeStateButton.Name = "ChangeStateButton";
|
---|
| 44 | this.ChangeStateButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 45 | this.ChangeStateButton.TabIndex = 1;
|
---|
| 46 | this.ChangeStateButton.Text = "ChangeState";
|
---|
| 47 | this.ChangeStateButton.UseVisualStyleBackColor = true;
|
---|
| 48 | this.ChangeStateButton.Click += new System.EventHandler(this.ChangeStateButton_Click);
|
---|
| 49 | //
|
---|
[2250] | 50 | // EditorView
|
---|
| 51 | //
|
---|
| 52 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 53 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[2254] | 54 | this.Controls.Add(this.ChangeStateButton);
|
---|
[2250] | 55 | this.Controls.Add(this.label1);
|
---|
| 56 | this.ForeColor = System.Drawing.SystemColors.ControlText;
|
---|
| 57 | this.Name = "EditorView";
|
---|
[2696] | 58 | this.VisibleChanged += new System.EventHandler(this.EditorView_VisibleChanged);
|
---|
[2250] | 59 | this.ResumeLayout(false);
|
---|
| 60 | this.PerformLayout();
|
---|
| 61 |
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | #endregion
|
---|
| 65 |
|
---|
| 66 | private System.Windows.Forms.Label label1;
|
---|
[2254] | 67 | private System.Windows.Forms.Button ChangeStateButton;
|
---|
[2250] | 68 | }
|
---|
| 69 | }
|
---|