Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Views/3.3/ResultsProducingItemView.Designer.cs @ 17956

Last change on this file since 17956 was 17953, checked in by mkommend, 3 years ago

#2521: Added first version (draft) of ResultsProducingItem, an according view and a refactored ProblemView.

File size: 11.2 KB
Line 
1namespace HeuristicLab.Optimization.Views {
2  partial class ResultsProducingItemView {
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.components = new System.ComponentModel.Container();
27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ResultsProducingItemView));
28      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Parameters", System.Windows.Forms.HorizontalAlignment.Left);
29      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Results", System.Windows.Forms.HorizontalAlignment.Left);
30      this.parameterResultsGroupBox = new System.Windows.Forms.GroupBox();
31      this.splitContainer = new System.Windows.Forms.SplitContainer();
32      this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
33      this.sortDescendingButton = new System.Windows.Forms.Button();
34      this.sortAscendingButton = new System.Windows.Forms.Button();
35      this.removeButton = new System.Windows.Forms.Button();
36      this.addButton = new System.Windows.Forms.Button();
37      this.listView = new System.Windows.Forms.ListView();
38      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
39      this.imageList = new System.Windows.Forms.ImageList(this.components);
40      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
41      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
42      this.parameterResultsGroupBox.SuspendLayout();
43      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
44      this.splitContainer.Panel1.SuspendLayout();
45      this.splitContainer.Panel2.SuspendLayout();
46      this.splitContainer.SuspendLayout();
47      this.detailsGroupBox.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // parameterResultsGroupBox
51      //
52      this.parameterResultsGroupBox.Controls.Add(this.splitContainer);
53      this.parameterResultsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.parameterResultsGroupBox.Location = new System.Drawing.Point(0, 0);
55      this.parameterResultsGroupBox.Margin = new System.Windows.Forms.Padding(0);
56      this.parameterResultsGroupBox.Name = "parameterResultsGroupBox";
57      this.parameterResultsGroupBox.Size = new System.Drawing.Size(1066, 649);
58      this.parameterResultsGroupBox.TabIndex = 1;
59      this.parameterResultsGroupBox.TabStop = false;
60      this.parameterResultsGroupBox.Text = "Parameter && Results";
61      //
62      // splitContainer
63      //
64      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
65      this.splitContainer.Location = new System.Drawing.Point(3, 16);
66      this.splitContainer.Name = "splitContainer";
67      //
68      // splitContainer.Panel1
69      //
70      this.splitContainer.Panel1.Controls.Add(this.showDetailsCheckBox);
71      this.splitContainer.Panel1.Controls.Add(this.sortDescendingButton);
72      this.splitContainer.Panel1.Controls.Add(this.sortAscendingButton);
73      this.splitContainer.Panel1.Controls.Add(this.removeButton);
74      this.splitContainer.Panel1.Controls.Add(this.addButton);
75      this.splitContainer.Panel1.Controls.Add(this.listView);
76      this.splitContainer.Panel1MinSize = 100;
77      //
78      // splitContainer.Panel2
79      //
80      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
81      this.splitContainer.Size = new System.Drawing.Size(1060, 630);
82      this.splitContainer.SplitterDistance = 251;
83      this.splitContainer.TabIndex = 2;
84      //
85      // showDetailsCheckBox
86      //
87      this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
88      this.showDetailsCheckBox.Checked = true;
89      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
90      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
91      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
92      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
93      this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
94      this.showDetailsCheckBox.TabIndex = 9;
95      this.showDetailsCheckBox.UseVisualStyleBackColor = true;
96      //
97      // sortDescendingButton
98      //
99      this.sortDescendingButton.Enabled = false;
100      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
101      this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
102      this.sortDescendingButton.Name = "sortDescendingButton";
103      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
104      this.sortDescendingButton.TabIndex = 6;
105      this.sortDescendingButton.UseVisualStyleBackColor = true;
106      //
107      // sortAscendingButton
108      //
109      this.sortAscendingButton.Enabled = false;
110      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
111      this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
112      this.sortAscendingButton.Name = "sortAscendingButton";
113      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
114      this.sortAscendingButton.TabIndex = 7;
115      this.sortAscendingButton.UseVisualStyleBackColor = true;
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 = 8;
125      this.removeButton.UseVisualStyleBackColor = true;
126      //
127      // addButton
128      //
129      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
130      this.addButton.Location = new System.Drawing.Point(3, 3);
131      this.addButton.Name = "addButton";
132      this.addButton.Size = new System.Drawing.Size(24, 24);
133      this.addButton.TabIndex = 5;
134      this.addButton.UseVisualStyleBackColor = true;
135      //
136      // listView
137      //
138      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
139            | System.Windows.Forms.AnchorStyles.Left)
140            | System.Windows.Forms.AnchorStyles.Right)));
141      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
142            this.columnHeader1});
143      listViewGroup1.Header = "Parameters";
144      listViewGroup1.Name = "parametersGroup";
145      listViewGroup2.Header = "Results";
146      listViewGroup2.Name = "resultsGroup";
147      this.listView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
148            listViewGroup1,
149            listViewGroup2});
150      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
151      this.listView.HideSelection = false;
152      this.listView.Location = new System.Drawing.Point(3, 33);
153      this.listView.Name = "listView";
154      this.listView.Size = new System.Drawing.Size(245, 591);
155      this.listView.SmallImageList = this.imageList;
156      this.listView.TabIndex = 0;
157      this.listView.UseCompatibleStateImageBehavior = false;
158      this.listView.View = System.Windows.Forms.View.Details;
159      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
160      this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
161      this.listView.Layout += new System.Windows.Forms.LayoutEventHandler(this.listView_Layout);
162      this.listView.Resize += new System.EventHandler(this.listView_Resize);
163      //
164      // columnHeader1
165      //
166      this.columnHeader1.Width = 240;
167      //
168      // imageList
169      //
170      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
171      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
172      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
173      //
174      // detailsGroupBox
175      //
176      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
177            | System.Windows.Forms.AnchorStyles.Left)
178            | System.Windows.Forms.AnchorStyles.Right)));
179      this.detailsGroupBox.Controls.Add(this.viewHost);
180      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
181      this.detailsGroupBox.Name = "detailsGroupBox";
182      this.detailsGroupBox.Size = new System.Drawing.Size(786, 600);
183      this.detailsGroupBox.TabIndex = 1;
184      this.detailsGroupBox.TabStop = false;
185      this.detailsGroupBox.Text = "Details";
186      //
187      // viewHost
188      //
189      this.viewHost.Caption = "View";
190      this.viewHost.Content = null;
191      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
192      this.viewHost.Enabled = false;
193      this.viewHost.Location = new System.Drawing.Point(3, 16);
194      this.viewHost.Name = "viewHost";
195      this.viewHost.ReadOnly = false;
196      this.viewHost.Size = new System.Drawing.Size(780, 581);
197      this.viewHost.TabIndex = 0;
198      this.viewHost.ViewsLabelVisible = true;
199      this.viewHost.ViewType = null;
200      //
201      // ResultsProducingItemView
202      //
203      this.Controls.Add(this.parameterResultsGroupBox);
204      this.Name = "ResultsProducingItemView";
205      this.Size = new System.Drawing.Size(1066, 649);
206      this.parameterResultsGroupBox.ResumeLayout(false);
207      this.splitContainer.Panel1.ResumeLayout(false);
208      this.splitContainer.Panel2.ResumeLayout(false);
209      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
210      this.splitContainer.ResumeLayout(false);
211      this.detailsGroupBox.ResumeLayout(false);
212      this.ResumeLayout(false);
213
214    }
215
216    #endregion
217    protected System.Windows.Forms.ImageList imageList;
218    protected System.Windows.Forms.GroupBox parameterResultsGroupBox;
219    protected System.Windows.Forms.SplitContainer splitContainer;
220    protected System.Windows.Forms.ListView listView;
221    protected System.Windows.Forms.GroupBox detailsGroupBox;
222    protected MainForm.WindowsForms.ViewHost viewHost;
223    protected System.Windows.Forms.ColumnHeader columnHeader1;
224    protected System.Windows.Forms.CheckBox showDetailsCheckBox;
225    protected System.Windows.Forms.Button sortDescendingButton;
226    protected System.Windows.Forms.Button sortAscendingButton;
227    protected System.Windows.Forms.Button removeButton;
228    protected System.Windows.Forms.Button addButton;
229  }
230}
Note: See TracBrowser for help on using the repository browser.