Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.AlgorithmHost/ParameterizedNamedItemContainerView.Designer.cs @ 4422

Last change on this file since 4422 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 10.4 KB
Line 
1namespace HeuristicLab.OKB.AlgorithmHost {
2  partial class ParameterizedNamedItemContainerView {
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 Windows Form 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(ParameterizedNamedItemContainerView));
28      this.tabControl = new System.Windows.Forms.TabControl();
29      this.itemPage = new System.Windows.Forms.TabPage();
30      this.newItemButton = new System.Windows.Forms.Button();
31      this.openItemButton = new System.Windows.Forms.Button();
32      this.itemPanel = new System.Windows.Forms.Panel();
33      this.itemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
34      this.parameterMappingPage = new System.Windows.Forms.TabPage();
35      this.parameterMappingView = new HeuristicLab.OKB.AlgorithmHost.MappingView();
36      this.progressBar = new System.Windows.Forms.ProgressBar();
37      this.refreshButton = new System.Windows.Forms.Button();
38      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
39      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
40      this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
41      this.tabControl.SuspendLayout();
42      this.itemPage.SuspendLayout();
43      this.itemPanel.SuspendLayout();
44      this.parameterMappingPage.SuspendLayout();
45      this.SuspendLayout();
46      //
47      // tabControl
48      //
49      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
50                  | System.Windows.Forms.AnchorStyles.Left)
51                  | System.Windows.Forms.AnchorStyles.Right)));
52      this.tabControl.Controls.Add(this.itemPage);
53      this.tabControl.Controls.Add(this.parameterMappingPage);
54      this.tabControl.Location = new System.Drawing.Point(0, 0);
55      this.tabControl.Name = "tabControl";
56      this.tabControl.SelectedIndex = 0;
57      this.tabControl.Size = new System.Drawing.Size(404, 223);
58      this.tabControl.TabIndex = 0;
59      //
60      // itemPage
61      //
62      this.itemPage.Controls.Add(this.newItemButton);
63      this.itemPage.Controls.Add(this.openItemButton);
64      this.itemPage.Controls.Add(this.itemPanel);
65      this.itemPage.Location = new System.Drawing.Point(4, 22);
66      this.itemPage.Name = "itemPage";
67      this.itemPage.Padding = new System.Windows.Forms.Padding(3);
68      this.itemPage.Size = new System.Drawing.Size(396, 197);
69      this.itemPage.TabIndex = 0;
70      this.itemPage.Text = "Item";
71      this.itemPage.UseVisualStyleBackColor = true;
72      //
73      // newItemButton
74      //
75      this.newItemButton.Image = ((System.Drawing.Image)(resources.GetObject("newItemButton.Image")));
76      this.newItemButton.Location = new System.Drawing.Point(6, 6);
77      this.newItemButton.Name = "newItemButton";
78      this.newItemButton.Size = new System.Drawing.Size(24, 24);
79      this.newItemButton.TabIndex = 1;
80      this.toolTip.SetToolTip(this.newItemButton, "New Item");
81      this.newItemButton.UseVisualStyleBackColor = true;
82      this.newItemButton.Click += new System.EventHandler(this.newAlgorithmButton_Click);
83      //
84      // openItemButton
85      //
86      this.openItemButton.Image = ((System.Drawing.Image)(resources.GetObject("openItemButton.Image")));
87      this.openItemButton.Location = new System.Drawing.Point(36, 6);
88      this.openItemButton.Name = "openItemButton";
89      this.openItemButton.Size = new System.Drawing.Size(24, 24);
90      this.openItemButton.TabIndex = 3;
91      this.toolTip.SetToolTip(this.openItemButton, "Open Item");
92      this.openItemButton.UseVisualStyleBackColor = true;
93      this.openItemButton.Click += new System.EventHandler(this.openItemButton_Click);
94      //
95      // itemPanel
96      //
97      this.itemPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
98                  | System.Windows.Forms.AnchorStyles.Left)
99                  | System.Windows.Forms.AnchorStyles.Right)));
100      this.itemPanel.Controls.Add(this.itemViewHost);
101      this.itemPanel.Location = new System.Drawing.Point(0, 36);
102      this.itemPanel.Name = "itemPanel";
103      this.itemPanel.Size = new System.Drawing.Size(396, 161);
104      this.itemPanel.TabIndex = 4;
105      //
106      // itemViewHost
107      //
108      this.itemViewHost.Caption = "View";
109      this.itemViewHost.Content = null;
110      this.itemViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
111      this.itemViewHost.Location = new System.Drawing.Point(0, 0);
112      this.itemViewHost.Name = "itemViewHost";
113      this.itemViewHost.ReadOnly = false;
114      this.itemViewHost.Size = new System.Drawing.Size(396, 161);
115      this.itemViewHost.TabIndex = 0;
116      this.itemViewHost.ViewType = null;
117      //
118      // parameterMappingPage
119      //
120      this.parameterMappingPage.Controls.Add(this.parameterMappingView);
121      this.parameterMappingPage.Location = new System.Drawing.Point(4, 22);
122      this.parameterMappingPage.Name = "parameterMappingPage";
123      this.parameterMappingPage.Padding = new System.Windows.Forms.Padding(3);
124      this.parameterMappingPage.Size = new System.Drawing.Size(396, 197);
125      this.parameterMappingPage.TabIndex = 1;
126      this.parameterMappingPage.Text = "Parameter Mapping";
127      this.parameterMappingPage.UseVisualStyleBackColor = true;
128      //
129      // parameterMappingView
130      //
131      this.parameterMappingView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
132                  | System.Windows.Forms.AnchorStyles.Left)
133                  | System.Windows.Forms.AnchorStyles.Right)));
134      this.parameterMappingView.Caption = "View";
135      this.parameterMappingView.Content = null;
136      this.parameterMappingView.Location = new System.Drawing.Point(0, 0);
137      this.parameterMappingView.Name = "parameterMappingView";
138      this.parameterMappingView.ReadOnly = false;
139      this.parameterMappingView.Size = new System.Drawing.Size(396, 197);
140      this.parameterMappingView.TabIndex = 3;
141      //
142      // progressBar
143      //
144      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
145                  | System.Windows.Forms.AnchorStyles.Right)));
146      this.progressBar.Location = new System.Drawing.Point(33, 229);
147      this.progressBar.MarqueeAnimationSpeed = 1;
148      this.progressBar.Name = "progressBar";
149      this.progressBar.Size = new System.Drawing.Size(368, 24);
150      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
151      this.progressBar.TabIndex = 2;
152      this.progressBar.Visible = false;
153      //
154      // refreshButton
155      //
156      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
157      this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));
158      this.refreshButton.Location = new System.Drawing.Point(3, 229);
159      this.refreshButton.Name = "refreshButton";
160      this.refreshButton.Size = new System.Drawing.Size(24, 24);
161      this.refreshButton.TabIndex = 1;
162      this.toolTip.SetToolTip(this.refreshButton, "Refresh list of available DB parameters");
163      this.refreshButton.UseVisualStyleBackColor = true;
164      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
165      //
166      // openFileDialog
167      //
168      this.openFileDialog.DefaultExt = "hl";
169      this.openFileDialog.FileName = "Algorithm";
170      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
171      this.openFileDialog.Title = "Open Algorithm";
172      //
173      // backgroundWorker
174      //
175      this.backgroundWorker.WorkerReportsProgress = true;
176      this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
177      this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
178      this.backgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_ProgressChanged);
179      //
180      // ParameterizedNamedItemContainerView
181      //
182      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
183      this.Controls.Add(this.tabControl);
184      this.Controls.Add(this.refreshButton);
185      this.Controls.Add(this.progressBar);
186      this.Name = "ParameterizedNamedItemContainerView";
187      this.Size = new System.Drawing.Size(404, 256);
188      this.tabControl.ResumeLayout(false);
189      this.itemPage.ResumeLayout(false);
190      this.itemPanel.ResumeLayout(false);
191      this.parameterMappingPage.ResumeLayout(false);
192      this.ResumeLayout(false);
193
194    }
195
196    #endregion
197
198    protected System.Windows.Forms.TabControl tabControl;
199    private System.Windows.Forms.TabPage itemPage;
200    private System.Windows.Forms.TabPage parameterMappingPage;
201    private System.Windows.Forms.Panel itemPanel;
202    private HeuristicLab.MainForm.WindowsForms.ViewHost itemViewHost;
203    protected System.Windows.Forms.Button openItemButton;
204    private System.Windows.Forms.Button newItemButton;
205    private System.Windows.Forms.OpenFileDialog openFileDialog;
206    protected System.Windows.Forms.ToolTip toolTip;
207    protected System.ComponentModel.BackgroundWorker backgroundWorker;
208    protected System.Windows.Forms.ProgressBar progressBar;
209    protected System.Windows.Forms.Button refreshButton;
210    private MappingView parameterMappingView;
211
212
213  }
214}
Note: See TracBrowser for help on using the repository browser.