1 | namespace HeuristicLab.OKB.ParameterTable {
|
---|
2 | partial class OperatorParameterSetterControl {
|
---|
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.nameBox = new System.Windows.Forms.TextBox();
|
---|
27 | this.setButton = new System.Windows.Forms.Button();
|
---|
28 | this.showButton = new System.Windows.Forms.Button();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // nameBox
|
---|
32 | //
|
---|
33 | this.nameBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
---|
34 | this.nameBox.Enabled = false;
|
---|
35 | this.nameBox.Location = new System.Drawing.Point(3, 3);
|
---|
36 | this.nameBox.Name = "nameBox";
|
---|
37 | this.nameBox.ReadOnly = true;
|
---|
38 | this.nameBox.Size = new System.Drawing.Size(19, 20);
|
---|
39 | this.nameBox.TabIndex = 0;
|
---|
40 | //
|
---|
41 | // setButton
|
---|
42 | //
|
---|
43 | this.setButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
---|
44 | this.setButton.Location = new System.Drawing.Point(23, 1);
|
---|
45 | this.setButton.Name = "setButton";
|
---|
46 | this.setButton.Size = new System.Drawing.Size(32, 23);
|
---|
47 | this.setButton.TabIndex = 1;
|
---|
48 | this.setButton.Text = "Set";
|
---|
49 | this.setButton.UseVisualStyleBackColor = true;
|
---|
50 | this.setButton.Click += new System.EventHandler(this.setButton_Click);
|
---|
51 | //
|
---|
52 | // showButton
|
---|
53 | //
|
---|
54 | this.showButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
---|
55 | this.showButton.Location = new System.Drawing.Point(55, 1);
|
---|
56 | this.showButton.Name = "showButton";
|
---|
57 | this.showButton.Size = new System.Drawing.Size(42, 23);
|
---|
58 | this.showButton.TabIndex = 2;
|
---|
59 | this.showButton.Text = "Show";
|
---|
60 | this.showButton.UseVisualStyleBackColor = true;
|
---|
61 | this.showButton.Click += new System.EventHandler(this.showButton_Click);
|
---|
62 | //
|
---|
63 | // ParameterSetterControl
|
---|
64 | //
|
---|
65 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
66 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
67 | this.Controls.Add(this.showButton);
|
---|
68 | this.Controls.Add(this.setButton);
|
---|
69 | this.Controls.Add(this.nameBox);
|
---|
70 | this.Name = "ParameterSetterControl";
|
---|
71 | this.Size = new System.Drawing.Size(97, 25);
|
---|
72 | this.ResumeLayout(false);
|
---|
73 | this.PerformLayout();
|
---|
74 |
|
---|
75 | }
|
---|
76 |
|
---|
77 | #endregion
|
---|
78 |
|
---|
79 | private System.Windows.Forms.TextBox nameBox;
|
---|
80 | private System.Windows.Forms.Button setButton;
|
---|
81 | private System.Windows.Forms.Button showButton;
|
---|
82 | }
|
---|
83 | }
|
---|