Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/ProblemDataView.Designer.cs @ 5289

Last change on this file since 5289 was 5289, checked in by swagner, 13 years ago

Renamed VS2008ImageLibrary to VSImageLibrary (#1174)

File size: 11.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Clients.OKB {
23  partial class ProblemDataView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing) {
35        if (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
49      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
50      this.groupBox = new System.Windows.Forms.GroupBox();
51      this.noViewAvailableLabel = new System.Windows.Forms.Label();
52      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.dataTypeComboBox = new System.Windows.Forms.ComboBox();
54      this.newDataButton = new System.Windows.Forms.Button();
55      this.saveFileButton = new System.Windows.Forms.Button();
56      this.openFileButton = new System.Windows.Forms.Button();
57      this.fileTextBox = new System.Windows.Forms.TextBox();
58      this.refreshDataButton = new System.Windows.Forms.Button();
59      this.storeDataButton = new System.Windows.Forms.Button();
60      this.dataTypeLabel = new System.Windows.Forms.Label();
61      this.fileLabel = new System.Windows.Forms.Label();
62      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
63      this.groupBox.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // openFileDialog
67      //
68      this.openFileDialog.FileName = "data";
69      this.openFileDialog.Filter = "All Files (*.*)|*.*";
70      this.openFileDialog.Title = "Load Problem Data";
71      //
72      // saveFileDialog
73      //
74      this.saveFileDialog.FileName = "data";
75      this.saveFileDialog.Filter = "All Files (*.*)|*.*";
76      this.saveFileDialog.Title = "Save Problem Data";
77      //
78      // groupBox
79      //
80      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.groupBox.Controls.Add(this.noViewAvailableLabel);
84      this.groupBox.Controls.Add(this.viewHost);
85      this.groupBox.Location = new System.Drawing.Point(0, 83);
86      this.groupBox.Name = "groupBox";
87      this.groupBox.Size = new System.Drawing.Size(633, 371);
88      this.groupBox.TabIndex = 19;
89      this.groupBox.TabStop = false;
90      this.groupBox.Text = "Data:";
91      //
92      // noViewAvailableLabel
93      //
94      this.noViewAvailableLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
95      this.noViewAvailableLabel.AutoSize = true;
96      this.noViewAvailableLabel.Location = new System.Drawing.Point(269, 179);
97      this.noViewAvailableLabel.Name = "noViewAvailableLabel";
98      this.noViewAvailableLabel.Size = new System.Drawing.Size(94, 13);
99      this.noViewAvailableLabel.TabIndex = 1;
100      this.noViewAvailableLabel.Text = "No view available.";
101      this.noViewAvailableLabel.Visible = false;
102      //
103      // viewHost
104      //
105      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
106                  | System.Windows.Forms.AnchorStyles.Left)
107                  | System.Windows.Forms.AnchorStyles.Right)));
108      this.viewHost.Caption = "View";
109      this.viewHost.Content = null;
110      this.viewHost.Enabled = true;
111      this.viewHost.Location = new System.Drawing.Point(6, 19);
112      this.viewHost.Name = "viewHost";
113      this.viewHost.ReadOnly = false;
114      this.viewHost.Size = new System.Drawing.Size(621, 346);
115      this.viewHost.TabIndex = 0;
116      this.viewHost.ViewType = null;
117      //
118      // dataTypeComboBox
119      //
120      this.dataTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
121                  | System.Windows.Forms.AnchorStyles.Right)));
122      this.dataTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
123      this.dataTypeComboBox.FormattingEnabled = true;
124      this.dataTypeComboBox.Location = new System.Drawing.Point(66, 30);
125      this.dataTypeComboBox.Name = "dataTypeComboBox";
126      this.dataTypeComboBox.Size = new System.Drawing.Size(567, 21);
127      this.dataTypeComboBox.TabIndex = 16;
128      this.dataTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTypeComboBox_SelectedIndexChanged);
129      //
130      // newDataButton
131      //
132      this.newDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
133      this.newDataButton.Location = new System.Drawing.Point(90, 0);
134      this.newDataButton.Name = "newDataButton";
135      this.newDataButton.Size = new System.Drawing.Size(24, 24);
136      this.newDataButton.TabIndex = 12;
137      this.toolTip.SetToolTip(this.newDataButton, "Create New Problem Data");
138      this.newDataButton.UseVisualStyleBackColor = true;
139      this.newDataButton.Click += new System.EventHandler(this.newDataButton_Click);
140      //
141      // saveFileButton
142      //
143      this.saveFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
144      this.saveFileButton.Location = new System.Drawing.Point(150, 0);
145      this.saveFileButton.Name = "saveFileButton";
146      this.saveFileButton.Size = new System.Drawing.Size(24, 24);
147      this.saveFileButton.TabIndex = 14;
148      this.toolTip.SetToolTip(this.saveFileButton, "Save Problem Data into File");
149      this.saveFileButton.UseVisualStyleBackColor = true;
150      this.saveFileButton.Click += new System.EventHandler(this.saveFileButton_Click);
151      //
152      // openFileButton
153      //
154      this.openFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
155      this.openFileButton.Location = new System.Drawing.Point(120, 0);
156      this.openFileButton.Name = "openFileButton";
157      this.openFileButton.Size = new System.Drawing.Size(24, 24);
158      this.openFileButton.TabIndex = 13;
159      this.toolTip.SetToolTip(this.openFileButton, "Load Problem Data from File");
160      this.openFileButton.UseVisualStyleBackColor = true;
161      this.openFileButton.Click += new System.EventHandler(this.openFileButton_Click);
162      //
163      // fileTextBox
164      //
165      this.fileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
166                  | System.Windows.Forms.AnchorStyles.Right)));
167      this.fileTextBox.Location = new System.Drawing.Point(66, 57);
168      this.fileTextBox.Name = "fileTextBox";
169      this.fileTextBox.ReadOnly = true;
170      this.fileTextBox.Size = new System.Drawing.Size(567, 20);
171      this.fileTextBox.TabIndex = 18;
172      //
173      // refreshDataButton
174      //
175      this.refreshDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
176      this.refreshDataButton.Location = new System.Drawing.Point(0, 0);
177      this.refreshDataButton.Name = "refreshDataButton";
178      this.refreshDataButton.Size = new System.Drawing.Size(24, 24);
179      this.refreshDataButton.TabIndex = 10;
180      this.toolTip.SetToolTip(this.refreshDataButton, "Refresh Problem Data from OKB");
181      this.refreshDataButton.UseVisualStyleBackColor = true;
182      this.refreshDataButton.Click += new System.EventHandler(this.refreshDataButton_Click);
183      //
184      // storeDataButton
185      //
186      this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
187      this.storeDataButton.Location = new System.Drawing.Point(30, 0);
188      this.storeDataButton.Name = "storeDataButton";
189      this.storeDataButton.Size = new System.Drawing.Size(24, 24);
190      this.storeDataButton.TabIndex = 11;
191      this.toolTip.SetToolTip(this.storeDataButton, "Store Problem Data in OKB");
192      this.storeDataButton.UseVisualStyleBackColor = true;
193      this.storeDataButton.Click += new System.EventHandler(this.storeDataButton_Click);
194      //
195      // dataTypeLabel
196      //
197      this.dataTypeLabel.AutoSize = true;
198      this.dataTypeLabel.Location = new System.Drawing.Point(3, 33);
199      this.dataTypeLabel.Name = "dataTypeLabel";
200      this.dataTypeLabel.Size = new System.Drawing.Size(57, 13);
201      this.dataTypeLabel.TabIndex = 15;
202      this.dataTypeLabel.Text = "&DataType:";
203      //
204      // fileLabel
205      //
206      this.fileLabel.AutoSize = true;
207      this.fileLabel.Location = new System.Drawing.Point(3, 60);
208      this.fileLabel.Name = "fileLabel";
209      this.fileLabel.Size = new System.Drawing.Size(26, 13);
210      this.fileLabel.TabIndex = 17;
211      this.fileLabel.Text = "&File:";
212      //
213      // ProblemDataView
214      //
215      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
216      this.Controls.Add(this.groupBox);
217      this.Controls.Add(this.dataTypeComboBox);
218      this.Controls.Add(this.newDataButton);
219      this.Controls.Add(this.saveFileButton);
220      this.Controls.Add(this.openFileButton);
221      this.Controls.Add(this.fileTextBox);
222      this.Controls.Add(this.refreshDataButton);
223      this.Controls.Add(this.storeDataButton);
224      this.Controls.Add(this.dataTypeLabel);
225      this.Controls.Add(this.fileLabel);
226      this.Name = "ProblemDataView";
227      this.Size = new System.Drawing.Size(633, 454);
228      this.groupBox.ResumeLayout(false);
229      this.groupBox.PerformLayout();
230      this.ResumeLayout(false);
231      this.PerformLayout();
232
233    }
234
235    #endregion
236
237    private System.Windows.Forms.ToolTip toolTip;
238    private System.Windows.Forms.OpenFileDialog openFileDialog;
239    private System.Windows.Forms.SaveFileDialog saveFileDialog;
240    private System.Windows.Forms.GroupBox groupBox;
241    private System.Windows.Forms.Label noViewAvailableLabel;
242    private MainForm.WindowsForms.ViewHost viewHost;
243    private System.Windows.Forms.ComboBox dataTypeComboBox;
244    private System.Windows.Forms.Button newDataButton;
245    private System.Windows.Forms.Button saveFileButton;
246    private System.Windows.Forms.Button openFileButton;
247    private System.Windows.Forms.TextBox fileTextBox;
248    private System.Windows.Forms.Button refreshDataButton;
249    private System.Windows.Forms.Button storeDataButton;
250    private System.Windows.Forms.Label dataTypeLabel;
251    private System.Windows.Forms.Label fileLabel;
252
253  }
254}
Note: See TracBrowser for help on using the repository browser.