[187] | 1 | namespace HeuristicLab.Data {
|
---|
| 2 | partial class ItemDictionaryView<K, V> {
|
---|
| 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.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
| 27 | this.removeButton = new System.Windows.Forms.Button();
|
---|
| 28 | this.addButton = new System.Windows.Forms.Button();
|
---|
| 29 | this.listView = new System.Windows.Forms.ListView();
|
---|
| 30 | this.keyHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 31 | this.valueHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 32 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 33 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 34 | this.keyTypeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 35 | this.valueTypeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 36 | this.detailsPanel = new System.Windows.Forms.Panel();
|
---|
| 37 | this.keyPanel = new System.Windows.Forms.Panel();
|
---|
| 38 | this.groupBox2 = new System.Windows.Forms.GroupBox();
|
---|
| 39 | this.groupBox3 = new System.Windows.Forms.GroupBox();
|
---|
| 40 | this.groupBox1.SuspendLayout();
|
---|
| 41 | this.SuspendLayout();
|
---|
| 42 | //
|
---|
| 43 | // groupBox1
|
---|
| 44 | //
|
---|
| 45 | this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 46 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 47 | this.groupBox1.Controls.Add(this.removeButton);
|
---|
| 48 | this.groupBox1.Controls.Add(this.addButton);
|
---|
| 49 | this.groupBox1.Controls.Add(this.listView);
|
---|
| 50 | this.groupBox1.Location = new System.Drawing.Point(5, 70);
|
---|
| 51 | this.groupBox1.Name = "groupBox1";
|
---|
| 52 | this.groupBox1.Size = new System.Drawing.Size(170, 175);
|
---|
| 53 | this.groupBox1.TabIndex = 0;
|
---|
| 54 | this.groupBox1.TabStop = false;
|
---|
| 55 | this.groupBox1.Text = "KeyValuePairs:";
|
---|
| 56 | //
|
---|
| 57 | // removeButton
|
---|
| 58 | //
|
---|
| 59 | this.removeButton.Location = new System.Drawing.Point(89, 145);
|
---|
| 60 | this.removeButton.Name = "removeButton";
|
---|
| 61 | this.removeButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 62 | this.removeButton.TabIndex = 2;
|
---|
| 63 | this.removeButton.Text = "&Remove";
|
---|
| 64 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 65 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 66 | //
|
---|
| 67 | // addButton
|
---|
| 68 | //
|
---|
| 69 | this.addButton.Location = new System.Drawing.Point(8, 145);
|
---|
| 70 | this.addButton.Name = "addButton";
|
---|
| 71 | this.addButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 72 | this.addButton.TabIndex = 1;
|
---|
| 73 | this.addButton.Text = "&Add...";
|
---|
| 74 | this.addButton.UseVisualStyleBackColor = true;
|
---|
| 75 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
| 76 | //
|
---|
| 77 | // listView
|
---|
| 78 | //
|
---|
| 79 | this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 80 | this.keyHeader,
|
---|
| 81 | this.valueHeader});
|
---|
| 82 | this.listView.Location = new System.Drawing.Point(7, 19);
|
---|
| 83 | this.listView.Name = "listView";
|
---|
| 84 | this.listView.Size = new System.Drawing.Size(157, 120);
|
---|
| 85 | this.listView.TabIndex = 0;
|
---|
| 86 | this.listView.UseCompatibleStateImageBehavior = false;
|
---|
| 87 | this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
|
---|
| 88 | //
|
---|
| 89 | // label1
|
---|
| 90 | //
|
---|
| 91 | this.label1.AutoSize = true;
|
---|
| 92 | this.label1.Location = new System.Drawing.Point(11, 12);
|
---|
| 93 | this.label1.Name = "label1";
|
---|
| 94 | this.label1.Size = new System.Drawing.Size(52, 13);
|
---|
| 95 | this.label1.TabIndex = 1;
|
---|
| 96 | this.label1.Text = "KeyType:";
|
---|
| 97 | //
|
---|
| 98 | // label2
|
---|
| 99 | //
|
---|
| 100 | this.label2.AutoSize = true;
|
---|
| 101 | this.label2.Location = new System.Drawing.Point(11, 40);
|
---|
| 102 | this.label2.Name = "label2";
|
---|
| 103 | this.label2.Size = new System.Drawing.Size(61, 13);
|
---|
| 104 | this.label2.TabIndex = 2;
|
---|
| 105 | this.label2.Text = "ValueType:";
|
---|
| 106 | //
|
---|
| 107 | // keyTypeTextBox
|
---|
| 108 | //
|
---|
| 109 | this.keyTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 110 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 111 | this.keyTypeTextBox.BackColor = System.Drawing.SystemColors.ControlLight;
|
---|
| 112 | this.keyTypeTextBox.Location = new System.Drawing.Point(73, 5);
|
---|
| 113 | this.keyTypeTextBox.Name = "keyTypeTextBox";
|
---|
| 114 | this.keyTypeTextBox.Size = new System.Drawing.Size(301, 20);
|
---|
| 115 | this.keyTypeTextBox.TabIndex = 3;
|
---|
| 116 | //
|
---|
| 117 | // valueTypeTextBox
|
---|
| 118 | //
|
---|
| 119 | this.valueTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 120 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 121 | this.valueTypeTextBox.BackColor = System.Drawing.SystemColors.ControlLight;
|
---|
| 122 | this.valueTypeTextBox.Location = new System.Drawing.Point(73, 33);
|
---|
| 123 | this.valueTypeTextBox.Name = "valueTypeTextBox";
|
---|
| 124 | this.valueTypeTextBox.Size = new System.Drawing.Size(301, 20);
|
---|
| 125 | this.valueTypeTextBox.TabIndex = 4;
|
---|
| 126 | //
|
---|
| 127 | // detailsPanel
|
---|
| 128 | //
|
---|
| 129 | this.detailsPanel.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 130 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 131 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 132 | this.detailsPanel.AutoScroll = true;
|
---|
| 133 | this.detailsPanel.ForeColor = System.Drawing.SystemColors.ControlText;
|
---|
| 134 | this.detailsPanel.Location = new System.Drawing.Point(187, 164);
|
---|
| 135 | this.detailsPanel.Name = "detailsPanel";
|
---|
| 136 | this.detailsPanel.Size = new System.Drawing.Size(187, 76);
|
---|
| 137 | this.detailsPanel.TabIndex = 9;
|
---|
| 138 | //
|
---|
| 139 | // keyPanel
|
---|
| 140 | //
|
---|
| 141 | this.keyPanel.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 142 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 143 | this.keyPanel.AutoScroll = true;
|
---|
| 144 | this.keyPanel.ForeColor = System.Drawing.SystemColors.ControlText;
|
---|
| 145 | this.keyPanel.Location = new System.Drawing.Point(187, 90);
|
---|
| 146 | this.keyPanel.Name = "keyPanel";
|
---|
| 147 | this.keyPanel.Size = new System.Drawing.Size(187, 43);
|
---|
| 148 | this.keyPanel.TabIndex = 0;
|
---|
| 149 | //
|
---|
| 150 | // groupBox2
|
---|
| 151 | //
|
---|
| 152 | this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 153 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 154 | this.groupBox2.Location = new System.Drawing.Point(180, 70);
|
---|
| 155 | this.groupBox2.Name = "groupBox2";
|
---|
| 156 | this.groupBox2.Size = new System.Drawing.Size(198, 69);
|
---|
| 157 | this.groupBox2.TabIndex = 10;
|
---|
| 158 | this.groupBox2.TabStop = false;
|
---|
| 159 | this.groupBox2.Text = "Key:";
|
---|
| 160 | //
|
---|
| 161 | // groupBox3
|
---|
| 162 | //
|
---|
| 163 | this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 164 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 165 | this.groupBox3.Location = new System.Drawing.Point(181, 145);
|
---|
| 166 | this.groupBox3.Name = "groupBox3";
|
---|
| 167 | this.groupBox3.Size = new System.Drawing.Size(197, 100);
|
---|
| 168 | this.groupBox3.TabIndex = 11;
|
---|
| 169 | this.groupBox3.TabStop = false;
|
---|
| 170 | this.groupBox3.Text = "Value:";
|
---|
| 171 | //
|
---|
| 172 | // ItemDictionaryView
|
---|
| 173 | //
|
---|
| 174 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 175 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 176 | this.Controls.Add(this.keyPanel);
|
---|
| 177 | this.Controls.Add(this.detailsPanel);
|
---|
| 178 | this.Controls.Add(this.valueTypeTextBox);
|
---|
| 179 | this.Controls.Add(this.keyTypeTextBox);
|
---|
| 180 | this.Controls.Add(this.label2);
|
---|
| 181 | this.Controls.Add(this.label1);
|
---|
| 182 | this.Controls.Add(this.groupBox1);
|
---|
| 183 | this.Controls.Add(this.groupBox2);
|
---|
| 184 | this.Controls.Add(this.groupBox3);
|
---|
| 185 | this.Name = "ItemDictionaryView";
|
---|
| 186 | this.Size = new System.Drawing.Size(381, 253);
|
---|
| 187 | this.groupBox1.ResumeLayout(false);
|
---|
| 188 | this.ResumeLayout(false);
|
---|
| 189 | this.PerformLayout();
|
---|
| 190 |
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 | #endregion
|
---|
| 194 |
|
---|
| 195 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
| 196 | private System.Windows.Forms.Button removeButton;
|
---|
| 197 | private System.Windows.Forms.Button addButton;
|
---|
| 198 | private System.Windows.Forms.ListView listView;
|
---|
| 199 | private System.Windows.Forms.Label label1;
|
---|
| 200 | private System.Windows.Forms.Label label2;
|
---|
| 201 | private System.Windows.Forms.TextBox keyTypeTextBox;
|
---|
| 202 | private System.Windows.Forms.TextBox valueTypeTextBox;
|
---|
| 203 | private System.Windows.Forms.ColumnHeader keyHeader;
|
---|
| 204 | private System.Windows.Forms.ColumnHeader valueHeader;
|
---|
| 205 | private System.Windows.Forms.Panel detailsPanel;
|
---|
| 206 | private System.Windows.Forms.Panel keyPanel;
|
---|
| 207 | private System.Windows.Forms.GroupBox groupBox2;
|
---|
| 208 | private System.Windows.Forms.GroupBox groupBox3;
|
---|
| 209 | }
|
---|
| 210 | }
|
---|