Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.ScheduleEncoding.Views/3.3/JobView.Designer.cs @ 10433

Last change on this file since 10433 was 10433, checked in by abeham, 10 years ago

#2127:

  • Fixed tab order in JobView and TaskView
  • Added additional events and registriations to account for changes to the jobs and tasks
File size: 5.7 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.Encodings.ScheduleEncoding.Views {
23  partial class JobView {
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.components = new System.ComponentModel.Container();
48      this.indexLabel = new System.Windows.Forms.Label();
49      this.indexTextBox = new System.Windows.Forms.TextBox();
50      this.dueDateLabel = new System.Windows.Forms.Label();
51      this.dueDateTextBox = new System.Windows.Forms.TextBox();
52      this.tasksGroupBox = new System.Windows.Forms.GroupBox();
53      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
55      this.SuspendLayout();
56      //
57      // indexLabel
58      //
59      this.indexLabel.AutoSize = true;
60      this.indexLabel.Location = new System.Drawing.Point(3, 6);
61      this.indexLabel.Name = "indexLabel";
62      this.indexLabel.Size = new System.Drawing.Size(41, 13);
63      this.indexLabel.TabIndex = 0;
64      this.indexLabel.Text = "Job Nr:";
65      //
66      // indexTextBox
67      //
68      this.indexTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
69            | System.Windows.Forms.AnchorStyles.Right)));
70      this.indexTextBox.Location = new System.Drawing.Point(65, 3);
71      this.indexTextBox.Name = "indexTextBox";
72      this.indexTextBox.Size = new System.Drawing.Size(451, 20);
73      this.indexTextBox.TabIndex = 1;
74      this.indexTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.indexTextBox_Validating);
75      //
76      // dueDateLabel
77      //
78      this.dueDateLabel.AutoSize = true;
79      this.dueDateLabel.Location = new System.Drawing.Point(3, 32);
80      this.dueDateLabel.Name = "dueDateLabel";
81      this.dueDateLabel.Size = new System.Drawing.Size(56, 13);
82      this.dueDateLabel.TabIndex = 2;
83      this.dueDateLabel.Text = "Due Date:";
84      //
85      // dueDateTextBox
86      //
87      this.dueDateTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
88            | System.Windows.Forms.AnchorStyles.Right)));
89      this.dueDateTextBox.Location = new System.Drawing.Point(65, 29);
90      this.dueDateTextBox.Name = "dueDateTextBox";
91      this.dueDateTextBox.Size = new System.Drawing.Size(451, 20);
92      this.dueDateTextBox.TabIndex = 3;
93      this.dueDateTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.dueDateTextBox_Validating);
94      //
95      // tasksGroupBox
96      //
97      this.tasksGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
98            | System.Windows.Forms.AnchorStyles.Left)
99            | System.Windows.Forms.AnchorStyles.Right)));
100      this.tasksGroupBox.Location = new System.Drawing.Point(6, 55);
101      this.tasksGroupBox.Name = "tasksGroupBox";
102      this.tasksGroupBox.Size = new System.Drawing.Size(510, 214);
103      this.tasksGroupBox.TabIndex = 4;
104      this.tasksGroupBox.TabStop = false;
105      this.tasksGroupBox.Text = "Tasks";
106      //
107      // errorProvider
108      //
109      this.errorProvider.ContainerControl = this;
110      //
111      // JobView
112      //
113      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
114      this.Controls.Add(this.tasksGroupBox);
115      this.Controls.Add(this.dueDateTextBox);
116      this.Controls.Add(this.dueDateLabel);
117      this.Controls.Add(this.indexTextBox);
118      this.Controls.Add(this.indexLabel);
119      this.Name = "JobView";
120      this.Size = new System.Drawing.Size(519, 272);
121      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
122      this.ResumeLayout(false);
123      this.PerformLayout();
124
125    }
126
127    #endregion
128
129    private System.Windows.Forms.Label indexLabel;
130    private System.Windows.Forms.TextBox indexTextBox;
131    private System.Windows.Forms.Label dueDateLabel;
132    private System.Windows.Forms.TextBox dueDateTextBox;
133    private System.Windows.Forms.GroupBox tasksGroupBox;
134    private System.Windows.Forms.ErrorProvider errorProvider;
135  }
136}
Note: See TracBrowser for help on using the repository browser.