Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Data.Views/3.3/Path Views/FileValueView.Designer.cs @ 14186

Last change on this file since 14186 was 14186, checked in by swagner, 8 years ago

#2526: Updated year of copyrights in license headers

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