Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2845_EnhancedProgress/HeuristicLab.Core.Views/3.3/NamedItemView.Designer.cs @ 16307

Last change on this file since 16307 was 16307, checked in by pfleck, 5 years ago

#2845 Merged trunk changes before source move into branch

File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Core.Views {
23  partial class NamedItemView {
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.nameLabel = new System.Windows.Forms.Label();
49      this.nameTextBox = new System.Windows.Forms.TextBox();
50      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
51      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
52      this.infoLabel = new System.Windows.Forms.Label();
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.SuspendLayout();
55      //
56      // nameLabel
57      //
58      this.nameLabel.AutoSize = true;
59      this.nameLabel.Location = new System.Drawing.Point(3, 3);
60      this.nameLabel.Name = "nameLabel";
61      this.nameLabel.Size = new System.Drawing.Size(38, 13);
62      this.nameLabel.TabIndex = 0;
63      this.nameLabel.Text = "&Name:";
64      //
65      // nameTextBox
66      //
67      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
68                  | System.Windows.Forms.AnchorStyles.Right)));
69      this.nameTextBox.Location = new System.Drawing.Point(58, 0);
70      this.nameTextBox.Name = "nameTextBox";
71      this.nameTextBox.Size = new System.Drawing.Size(268, 20);
72      this.nameTextBox.TabIndex = 1;
73      this.nameTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nameTextBox_KeyDown);
74      this.nameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating);
75      this.nameTextBox.Validated += new System.EventHandler(this.nameTextBox_Validated);
76      //
77      // errorProvider
78      //
79      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
80      this.errorProvider.ContainerControl = this;
81      //
82      // infoLabel
83      //
84      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
85      this.infoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
86      this.infoLabel.Location = new System.Drawing.Point(332, 3);
87      this.infoLabel.Name = "infoLabel";
88      this.infoLabel.Size = new System.Drawing.Size(16, 16);
89      this.infoLabel.TabIndex = 2;
90      this.toolTip.SetToolTip(this.infoLabel, "Double-click to open description editor.");
91      this.infoLabel.DoubleClick += new System.EventHandler(this.infoLabel_DoubleClick);
92      //
93      // NamedItemView
94      //
95      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
96      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
97      this.Controls.Add(this.infoLabel);
98      this.Controls.Add(this.nameTextBox);
99      this.Controls.Add(this.nameLabel);
100      this.Name = "NamedItemView";
101      this.Size = new System.Drawing.Size(351, 28);
102      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
103      this.ResumeLayout(false);
104      this.PerformLayout();
105
106    }
107
108    #endregion
109
110    protected System.Windows.Forms.TextBox nameTextBox;
111    protected System.Windows.Forms.Label nameLabel;
112    protected System.Windows.Forms.ErrorProvider errorProvider;
113    protected System.Windows.Forms.ToolTip toolTip;
114    protected System.Windows.Forms.Label infoLabel;
115  }
116}
Note: See TracBrowser for help on using the repository browser.