Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Data Path DataTypes/HeuristicLab.Data.Views/3.3/Path Views/DirectoryValueView.Designer.cs @ 9680

Last change on this file since 9680 was 9680, checked in by mkommend, 11 years ago

#2081: Corrected namespaces of new path value types and added build command.

File size: 4.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Data.Views {
23  partial class DirectoryValueView {
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 && (components != null)) {
35        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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DirectoryValueView));
48      this.openButton = new System.Windows.Forms.Button();
49      this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // valueTextBox
58      //
59      this.errorProvider.SetIconAlignment(this.valueTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
60      this.errorProvider.SetIconPadding(this.valueTextBox, 2);
61      this.valueTextBox.Location = new System.Drawing.Point(17, 2);
62      this.valueTextBox.Size = new System.Drawing.Size(87, 20);
63      //
64      // valueLabel
65      //
66      this.valueLabel.Location = new System.Drawing.Point(3, 5);
67      this.valueLabel.Size = new System.Drawing.Size(52, 13);
68      this.valueLabel.Text = "Directory:";
69      //
70      // splitContainer
71      //
72      //
73      // splitContainer.Panel2
74      //
75      this.splitContainer.Panel2.Controls.Add(this.openButton);
76      this.splitContainer.Size = new System.Drawing.Size(194, 24);
77      this.splitContainer.SplitterDistance = 56;
78      //
79      // openButton
80      //
81      this.openButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
82      this.openButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
83      this.openButton.Location = new System.Drawing.Point(110, 0);
84      this.openButton.Name = "openButton";
85      this.openButton.Size = new System.Drawing.Size(24, 24);
86      this.openButton.TabIndex = 3;
87      this.openButton.UseVisualStyleBackColor = true;
88      this.openButton.Click += new System.EventHandler(this.openButton_Click);
89      //
90      // DirectoryValueView
91      //
92      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
93      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
94      this.Name = "DirectoryValueView";
95      this.Size = new System.Drawing.Size(194, 24);
96      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
97      this.splitContainer.Panel1.ResumeLayout(false);
98      this.splitContainer.Panel1.PerformLayout();
99      this.splitContainer.Panel2.ResumeLayout(false);
100      this.splitContainer.Panel2.PerformLayout();
101      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
102      this.splitContainer.ResumeLayout(false);
103      this.ResumeLayout(false);
104
105    }
106
107    #endregion
108
109    protected System.Windows.Forms.Button openButton;
110    protected System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
111
112  }
113}
Note: See TracBrowser for help on using the repository browser.