Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Data.Views/3.3/StringConvertibleValueTupleView.Designer.cs

Last change on this file was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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
21namespace HeuristicLab.Data.Views {
22  public partial class StringConvertibleValueTupleView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.Item1View = new HeuristicLab.Data.Views.StringConvertibleValueView();
47      this.Item2View = new HeuristicLab.Data.Views.StringConvertibleValueView();
48      this.Item1Label = new System.Windows.Forms.Label();
49      this.Item2Label = new System.Windows.Forms.Label();
50      this.SuspendLayout();
51      //
52      // Item1View
53      //
54      this.Item1View.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
55            | System.Windows.Forms.AnchorStyles.Right)));
56      this.Item1View.Caption = "StringConvertibleValue View";
57      this.Item1View.Content = null;
58      this.Item1View.LabelVisible = false;
59      this.Item1View.Location = new System.Drawing.Point(45, 0);
60      this.Item1View.Name = "Item1View";
61      this.Item1View.ReadOnly = false;
62      this.Item1View.Size = new System.Drawing.Size(260, 20);
63      this.Item1View.TabIndex = 0;
64      //
65      // Item2View
66      //
67      this.Item2View.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
68            | System.Windows.Forms.AnchorStyles.Right)));
69      this.Item2View.Caption = "StringConvertibleValue View";
70      this.Item2View.Content = null;
71      this.Item2View.LabelVisible = false;
72      this.Item2View.Location = new System.Drawing.Point(45, 26);
73      this.Item2View.Name = "Item2View";
74      this.Item2View.ReadOnly = false;
75      this.Item2View.Size = new System.Drawing.Size(260, 20);
76      this.Item2View.TabIndex = 1;
77      //
78      // Item1Label
79      //
80      this.Item1Label.AutoSize = true;
81      this.Item1Label.Location = new System.Drawing.Point(3, 3);
82      this.Item1Label.Name = "Item1Label";
83      this.Item1Label.Size = new System.Drawing.Size(36, 13);
84      this.Item1Label.TabIndex = 2;
85      this.Item1Label.Text = "Item1:";
86      //
87      // Item2Label
88      //
89      this.Item2Label.AutoSize = true;
90      this.Item2Label.Location = new System.Drawing.Point(3, 29);
91      this.Item2Label.Name = "Item2Label";
92      this.Item2Label.Size = new System.Drawing.Size(36, 13);
93      this.Item2Label.TabIndex = 3;
94      this.Item2Label.Text = "Item2:";
95      //
96      // StringConvertibleValueTupleView
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
100      this.Controls.Add(this.Item1Label);
101      this.Controls.Add(this.Item2Label);
102      this.Controls.Add(this.Item1View);
103      this.Controls.Add(this.Item2View);
104      this.Name = "StringConvertibleValueTupleView";
105      this.Size = new System.Drawing.Size(308, 47);
106      this.ResumeLayout(false);
107      this.PerformLayout();
108
109    }
110
111    #endregion
112
113    protected StringConvertibleValueView Item1View;
114    protected StringConvertibleValueView Item2View;
115    protected System.Windows.Forms.Label Item1Label;
116    protected System.Windows.Forms.Label Item2Label;
117
118  }
119}
Note: See TracBrowser for help on using the repository browser.