1 | using System.Windows.Forms;
|
---|
2 | namespace HeuristicLab.Encodings.ParameterConfigurationEncoding.Views {
|
---|
3 | partial class ItemDictionaryView<K, T> {
|
---|
4 | /// <summary>
|
---|
5 | /// Required designer variable.
|
---|
6 | /// </summary>
|
---|
7 | private System.ComponentModel.IContainer components = null;
|
---|
8 |
|
---|
9 | #region Windows Form Designer generated code
|
---|
10 |
|
---|
11 | /// <summary>
|
---|
12 | /// Required method for Designer support - do not modify
|
---|
13 | /// the contents of this method with the code editor.
|
---|
14 | /// </summary>
|
---|
15 | private void InitializeComponent() {
|
---|
16 | this.components = new System.ComponentModel.Container();
|
---|
17 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
18 | this.itemsListView = new System.Windows.Forms.ListView();
|
---|
19 | this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
20 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
21 | this.sortDescendingButton = new System.Windows.Forms.Button();
|
---|
22 | this.sortAscendingButton = new System.Windows.Forms.Button();
|
---|
23 | this.removeButton = new System.Windows.Forms.Button();
|
---|
24 | this.addButton = new System.Windows.Forms.Button();
|
---|
25 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
26 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
27 | this.itemsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
28 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
29 | this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
|
---|
30 | this.splitContainer.Panel1.SuspendLayout();
|
---|
31 | this.splitContainer.Panel2.SuspendLayout();
|
---|
32 | this.splitContainer.SuspendLayout();
|
---|
33 | this.detailsGroupBox.SuspendLayout();
|
---|
34 | this.itemsGroupBox.SuspendLayout();
|
---|
35 | this.SuspendLayout();
|
---|
36 | //
|
---|
37 | // splitContainer
|
---|
38 | //
|
---|
39 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
40 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
41 | this.splitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
42 | this.splitContainer.Name = "splitContainer";
|
---|
43 | //
|
---|
44 | // splitContainer.Panel1
|
---|
45 | //
|
---|
46 | this.splitContainer.Panel1.Controls.Add(this.showDetailsCheckBox);
|
---|
47 | this.splitContainer.Panel1.Controls.Add(this.itemsListView);
|
---|
48 | this.splitContainer.Panel1.Controls.Add(this.sortDescendingButton);
|
---|
49 | this.splitContainer.Panel1.Controls.Add(this.sortAscendingButton);
|
---|
50 | this.splitContainer.Panel1.Controls.Add(this.removeButton);
|
---|
51 | this.splitContainer.Panel1.Controls.Add(this.addButton);
|
---|
52 | this.splitContainer.Panel1MinSize = 100;
|
---|
53 | //
|
---|
54 | // splitContainer.Panel2
|
---|
55 | //
|
---|
56 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
57 | this.splitContainer.Size = new System.Drawing.Size(526, 364);
|
---|
58 | this.splitContainer.SplitterDistance = 250;
|
---|
59 | this.splitContainer.TabIndex = 0;
|
---|
60 | //
|
---|
61 | // itemsListView
|
---|
62 | //
|
---|
63 | this.itemsListView.AllowDrop = true;
|
---|
64 | this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
65 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
66 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
67 | this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
68 | this.columnHeader1});
|
---|
69 | this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
70 | this.itemsListView.HideSelection = false;
|
---|
71 | this.itemsListView.Location = new System.Drawing.Point(3, 33);
|
---|
72 | this.itemsListView.Name = "itemsListView";
|
---|
73 | this.itemsListView.ShowItemToolTips = true;
|
---|
74 | this.itemsListView.Size = new System.Drawing.Size(244, 327);
|
---|
75 | this.itemsListView.SmallImageList = this.imageList;
|
---|
76 | this.itemsListView.TabIndex = 5;
|
---|
77 | this.itemsListView.UseCompatibleStateImageBehavior = false;
|
---|
78 | this.itemsListView.View = System.Windows.Forms.View.Details;
|
---|
79 | this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
|
---|
80 | this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
|
---|
81 | this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
|
---|
82 | this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
83 | this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
84 | this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
|
---|
85 | this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
|
---|
86 | //
|
---|
87 | // imageList
|
---|
88 | //
|
---|
89 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
90 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
91 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
92 | //
|
---|
93 | // sortDescendingButton
|
---|
94 | //
|
---|
95 | this.sortDescendingButton.Enabled = false;
|
---|
96 | this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
|
---|
97 | this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
|
---|
98 | this.sortDescendingButton.Name = "sortDescendingButton";
|
---|
99 | this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
|
---|
100 | this.sortDescendingButton.TabIndex = 1;
|
---|
101 | this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
|
---|
102 | this.sortDescendingButton.UseVisualStyleBackColor = true;
|
---|
103 | this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
|
---|
104 | //
|
---|
105 | // sortAscendingButton
|
---|
106 | //
|
---|
107 | this.sortAscendingButton.Enabled = false;
|
---|
108 | this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
|
---|
109 | this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
|
---|
110 | this.sortAscendingButton.Name = "sortAscendingButton";
|
---|
111 | this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
|
---|
112 | this.sortAscendingButton.TabIndex = 2;
|
---|
113 | this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
|
---|
114 | this.sortAscendingButton.UseVisualStyleBackColor = true;
|
---|
115 | this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
|
---|
116 | //
|
---|
117 | // removeButton
|
---|
118 | //
|
---|
119 | this.removeButton.Enabled = false;
|
---|
120 | this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
121 | this.removeButton.Location = new System.Drawing.Point(93, 3);
|
---|
122 | this.removeButton.Name = "removeButton";
|
---|
123 | this.removeButton.Size = new System.Drawing.Size(24, 24);
|
---|
124 | this.removeButton.TabIndex = 3;
|
---|
125 | this.toolTip.SetToolTip(this.removeButton, "Remove");
|
---|
126 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
127 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
128 | //
|
---|
129 | // addButton
|
---|
130 | //
|
---|
131 | this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
|
---|
132 | this.addButton.Location = new System.Drawing.Point(3, 3);
|
---|
133 | this.addButton.Name = "addButton";
|
---|
134 | this.addButton.Size = new System.Drawing.Size(24, 24);
|
---|
135 | this.addButton.TabIndex = 0;
|
---|
136 | this.toolTip.SetToolTip(this.addButton, "Add");
|
---|
137 | this.addButton.UseVisualStyleBackColor = true;
|
---|
138 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
139 | //
|
---|
140 | // detailsGroupBox
|
---|
141 | //
|
---|
142 | this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
143 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
144 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
145 | this.detailsGroupBox.Controls.Add(this.viewHost);
|
---|
146 | this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
|
---|
147 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
148 | this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
|
---|
149 | this.detailsGroupBox.TabIndex = 0;
|
---|
150 | this.detailsGroupBox.TabStop = false;
|
---|
151 | this.detailsGroupBox.Text = "Details";
|
---|
152 | //
|
---|
153 | // viewHost
|
---|
154 | //
|
---|
155 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
156 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
157 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
158 | this.viewHost.Caption = "View";
|
---|
159 | this.viewHost.Content = null;
|
---|
160 | this.viewHost.Location = new System.Drawing.Point(6, 19);
|
---|
161 | this.viewHost.Name = "viewHost";
|
---|
162 | this.viewHost.ReadOnly = false;
|
---|
163 | this.viewHost.Size = new System.Drawing.Size(254, 310);
|
---|
164 | this.viewHost.TabIndex = 0;
|
---|
165 | this.viewHost.ViewType = null;
|
---|
166 | //
|
---|
167 | // itemsGroupBox
|
---|
168 | //
|
---|
169 | this.itemsGroupBox.Controls.Add(this.splitContainer);
|
---|
170 | this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
171 | this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
172 | this.itemsGroupBox.Name = "itemsGroupBox";
|
---|
173 | this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
|
---|
174 | this.itemsGroupBox.TabIndex = 0;
|
---|
175 | this.itemsGroupBox.TabStop = false;
|
---|
176 | this.itemsGroupBox.Text = "Items";
|
---|
177 | //
|
---|
178 | // showDetailsCheckBox
|
---|
179 | //
|
---|
180 | this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
181 | this.showDetailsCheckBox.Checked = true;
|
---|
182 | this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
183 | this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
|
---|
184 | this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
|
---|
185 | this.showDetailsCheckBox.Name = "showDetailsCheckBox";
|
---|
186 | this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
|
---|
187 | this.showDetailsCheckBox.TabIndex = 4;
|
---|
188 | this.toolTip.SetToolTip(this.showDetailsCheckBox, "Show/Hide Details");
|
---|
189 | this.showDetailsCheckBox.UseVisualStyleBackColor = true;
|
---|
190 | this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
|
---|
191 | //
|
---|
192 | // ItemCollectionView
|
---|
193 | //
|
---|
194 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
195 | this.Controls.Add(this.itemsGroupBox);
|
---|
196 | this.Name = "ItemCollectionView";
|
---|
197 | this.Size = new System.Drawing.Size(532, 383);
|
---|
198 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
199 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
200 | this.splitContainer.ResumeLayout(false);
|
---|
201 | this.detailsGroupBox.ResumeLayout(false);
|
---|
202 | this.itemsGroupBox.ResumeLayout(false);
|
---|
203 | this.ResumeLayout(false);
|
---|
204 |
|
---|
205 | }
|
---|
206 |
|
---|
207 | #endregion
|
---|
208 |
|
---|
209 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
210 | protected System.Windows.Forms.ColumnHeader columnHeader1;
|
---|
211 | protected GroupBox itemsGroupBox;
|
---|
212 | protected ListView itemsListView;
|
---|
213 | protected GroupBox detailsGroupBox;
|
---|
214 | protected Button addButton;
|
---|
215 | protected Button removeButton;
|
---|
216 | protected ToolTip toolTip;
|
---|
217 | protected ImageList imageList;
|
---|
218 | protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
219 | protected Button sortAscendingButton;
|
---|
220 | protected Button sortDescendingButton;
|
---|
221 | protected CheckBox showDetailsCheckBox;
|
---|
222 |
|
---|
223 | }
|
---|
224 | }
|
---|