Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Breadcrumbs/HeuristicLab.Data.Views/3.3/Path Views/DirectoryValueView.Designer.cs @ 11594

Last change on this file since 11594 was 11594, checked in by jkarder, 9 years ago

#2116: merged r10041-r11593 from trunk into branch

File size: 4.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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      this.stringConvertibleValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
51      this.SuspendLayout();
52      //
53      // openButton
54      //
55      this.openButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
56      this.openButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
57      this.openButton.Location = new System.Drawing.Point(167, 0);
58      this.openButton.Name = "openButton";
59      this.openButton.Size = new System.Drawing.Size(24, 24);
60      this.openButton.TabIndex = 3;
61      this.openButton.UseVisualStyleBackColor = true;
62      this.openButton.Click += new System.EventHandler(this.openButton_Click);
63      //
64      // stringConvertibleValueView
65      //
66      this.stringConvertibleValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67            | System.Windows.Forms.AnchorStyles.Right)));
68      this.stringConvertibleValueView.Caption = "StringConvertibleValue View";
69      this.stringConvertibleValueView.Content = null;
70      this.stringConvertibleValueView.LabelVisible = true;
71      this.stringConvertibleValueView.Location = new System.Drawing.Point(4, 2);
72      this.stringConvertibleValueView.Name = "stringConvertibleValueView";
73      this.stringConvertibleValueView.ReadOnly = false;
74      this.stringConvertibleValueView.Size = new System.Drawing.Size(157, 21);
75      this.stringConvertibleValueView.TabIndex = 4;
76      //
77      // DirectoryValueView
78      //
79      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
80      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
81      this.Controls.Add(this.stringConvertibleValueView);
82      this.Controls.Add(this.openButton);
83      this.Name = "DirectoryValueView";
84      this.Size = new System.Drawing.Size(194, 24);
85      this.ResumeLayout(false);
86
87    }
88
89    #endregion
90
91    protected System.Windows.Forms.Button openButton;
92    protected System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
93    private StringConvertibleValueView stringConvertibleValueView;
94
95  }
96}
Note: See TracBrowser for help on using the repository browser.