Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ProjectView.Designer.cs @ 15559

Last change on this file since 15559 was 15422, checked in by jkarder, 6 years ago

#2839: worked on resources and projects views

File size: 10.3 KB
Line 
1namespace HeuristicLab.Clients.Hive.Administrator.Views {
2  partial class ProjectView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.nameLabel = new System.Windows.Forms.Label();
27      this.nameTextBox = new System.Windows.Forms.TextBox();
28      this.descriptionLabel = new System.Windows.Forms.Label();
29      this.descriptionTextBox = new System.Windows.Forms.TextBox();
30      this.ownerComboBox = new System.Windows.Forms.ComboBox();
31      this.ownerLabel = new System.Windows.Forms.Label();
32      this.createdLabel = new System.Windows.Forms.Label();
33      this.startDateTimePicker = new System.Windows.Forms.DateTimePicker();
34      this.startLabel = new System.Windows.Forms.Label();
35      this.endDateTimePicker = new System.Windows.Forms.DateTimePicker();
36      this.endLabel = new System.Windows.Forms.Label();
37      this.indefiniteCheckBox = new System.Windows.Forms.CheckBox();
38      this.createdTextBox = new System.Windows.Forms.TextBox();
39      this.refreshButton = new System.Windows.Forms.Button();
40      this.SuspendLayout();
41      //
42      // nameLabel
43      //
44      this.nameLabel.AutoSize = true;
45      this.nameLabel.Location = new System.Drawing.Point(3, 11);
46      this.nameLabel.Name = "nameLabel";
47      this.nameLabel.Size = new System.Drawing.Size(38, 13);
48      this.nameLabel.TabIndex = 0;
49      this.nameLabel.Text = "Name:";
50      //
51      // nameTextBox
52      //
53      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
54            | System.Windows.Forms.AnchorStyles.Right)));
55      this.nameTextBox.Location = new System.Drawing.Point(72, 8);
56      this.nameTextBox.Name = "nameTextBox";
57      this.nameTextBox.Size = new System.Drawing.Size(464, 20);
58      this.nameTextBox.TabIndex = 1;
59      this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
60      this.nameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating);
61      //
62      // descriptionLabel
63      //
64      this.descriptionLabel.AutoSize = true;
65      this.descriptionLabel.Location = new System.Drawing.Point(3, 37);
66      this.descriptionLabel.Name = "descriptionLabel";
67      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
68      this.descriptionLabel.TabIndex = 2;
69      this.descriptionLabel.Text = "Description:";
70      //
71      // descriptionTextBox
72      //
73      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
74            | System.Windows.Forms.AnchorStyles.Right)));
75      this.descriptionTextBox.Location = new System.Drawing.Point(72, 34);
76      this.descriptionTextBox.Multiline = true;
77      this.descriptionTextBox.Name = "descriptionTextBox";
78      this.descriptionTextBox.Size = new System.Drawing.Size(464, 98);
79      this.descriptionTextBox.TabIndex = 3;
80      this.descriptionTextBox.TextChanged += new System.EventHandler(this.descriptionTextBox_TextChanged);
81      //
82      // ownerComboBox
83      //
84      this.ownerComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
85            | System.Windows.Forms.AnchorStyles.Right)));
86      this.ownerComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
87      this.ownerComboBox.FormattingEnabled = true;
88      this.ownerComboBox.Location = new System.Drawing.Point(102, 138);
89      this.ownerComboBox.Name = "ownerComboBox";
90      this.ownerComboBox.Size = new System.Drawing.Size(434, 21);
91      this.ownerComboBox.TabIndex = 5;
92      this.ownerComboBox.SelectedIndexChanged += new System.EventHandler(this.ownerComboBox_SelectedIndexChanged);
93      //
94      // ownerLabel
95      //
96      this.ownerLabel.AutoSize = true;
97      this.ownerLabel.Location = new System.Drawing.Point(3, 141);
98      this.ownerLabel.Name = "ownerLabel";
99      this.ownerLabel.Size = new System.Drawing.Size(41, 13);
100      this.ownerLabel.TabIndex = 4;
101      this.ownerLabel.Text = "Owner:";
102      //
103      // createdLabel
104      //
105      this.createdLabel.AutoSize = true;
106      this.createdLabel.Location = new System.Drawing.Point(3, 171);
107      this.createdLabel.Name = "createdLabel";
108      this.createdLabel.Size = new System.Drawing.Size(47, 13);
109      this.createdLabel.TabIndex = 6;
110      this.createdLabel.Text = "Created:";
111      //
112      // startDateTimePicker
113      //
114      this.startDateTimePicker.CustomFormat = "ddd, dd.MM.yyyy, HH:mm:ss";
115      this.startDateTimePicker.Enabled = false;
116      this.startDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
117      this.startDateTimePicker.Location = new System.Drawing.Point(72, 190);
118      this.startDateTimePicker.Name = "startDateTimePicker";
119      this.startDateTimePicker.Size = new System.Drawing.Size(200, 20);
120      this.startDateTimePicker.TabIndex = 9;
121      this.startDateTimePicker.ValueChanged += new System.EventHandler(this.startDateTimePicker_ValueChanged);
122      //
123      // startLabel
124      //
125      this.startLabel.AutoSize = true;
126      this.startLabel.Location = new System.Drawing.Point(3, 197);
127      this.startLabel.Name = "startLabel";
128      this.startLabel.Size = new System.Drawing.Size(32, 13);
129      this.startLabel.TabIndex = 8;
130      this.startLabel.Text = "Start:";
131      //
132      // endDateTimePicker
133      //
134      this.endDateTimePicker.CustomFormat = "ddd, dd.MM.yyyy, HH:mm:ss";
135      this.endDateTimePicker.Enabled = false;
136      this.endDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
137      this.endDateTimePicker.Location = new System.Drawing.Point(72, 217);
138      this.endDateTimePicker.Name = "endDateTimePicker";
139      this.endDateTimePicker.Size = new System.Drawing.Size(200, 20);
140      this.endDateTimePicker.TabIndex = 11;
141      this.endDateTimePicker.ValueChanged += new System.EventHandler(this.endDateTimePicker_ValueChanged);
142      //
143      // endLabel
144      //
145      this.endLabel.AutoSize = true;
146      this.endLabel.Location = new System.Drawing.Point(3, 223);
147      this.endLabel.Name = "endLabel";
148      this.endLabel.Size = new System.Drawing.Size(29, 13);
149      this.endLabel.TabIndex = 10;
150      this.endLabel.Text = "End:";
151      //
152      // indefiniteCheckBox
153      //
154      this.indefiniteCheckBox.AutoSize = true;
155      this.indefiniteCheckBox.Location = new System.Drawing.Point(278, 219);
156      this.indefiniteCheckBox.Name = "indefiniteCheckBox";
157      this.indefiniteCheckBox.Size = new System.Drawing.Size(69, 17);
158      this.indefiniteCheckBox.TabIndex = 12;
159      this.indefiniteCheckBox.Text = "Indefinite";
160      this.indefiniteCheckBox.UseVisualStyleBackColor = true;
161      this.indefiniteCheckBox.CheckedChanged += new System.EventHandler(this.indefiniteCheckBox_CheckedChanged);
162      //
163      // createdTextBox
164      //
165      this.createdTextBox.Location = new System.Drawing.Point(72, 164);
166      this.createdTextBox.Name = "createdTextBox";
167      this.createdTextBox.ReadOnly = true;
168      this.createdTextBox.Size = new System.Drawing.Size(200, 20);
169      this.createdTextBox.TabIndex = 7;
170      //
171      // refreshButton
172      //
173      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
174      this.refreshButton.Location = new System.Drawing.Point(72, 136);
175      this.refreshButton.Name = "refreshButton";
176      this.refreshButton.Size = new System.Drawing.Size(24, 24);
177      this.refreshButton.TabIndex = 15;
178      this.refreshButton.UseVisualStyleBackColor = true;
179      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
180      //
181      // ProjectView
182      //
183      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
184      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
185      this.Controls.Add(this.refreshButton);
186      this.Controls.Add(this.createdTextBox);
187      this.Controls.Add(this.indefiniteCheckBox);
188      this.Controls.Add(this.endLabel);
189      this.Controls.Add(this.endDateTimePicker);
190      this.Controls.Add(this.startLabel);
191      this.Controls.Add(this.startDateTimePicker);
192      this.Controls.Add(this.createdLabel);
193      this.Controls.Add(this.ownerLabel);
194      this.Controls.Add(this.ownerComboBox);
195      this.Controls.Add(this.descriptionTextBox);
196      this.Controls.Add(this.descriptionLabel);
197      this.Controls.Add(this.nameTextBox);
198      this.Controls.Add(this.nameLabel);
199      this.Name = "ProjectView";
200      this.Size = new System.Drawing.Size(539, 246);
201      this.Load += new System.EventHandler(this.ProjectView_Load);
202      this.ResumeLayout(false);
203      this.PerformLayout();
204
205    }
206
207    #endregion
208
209    private System.Windows.Forms.Label nameLabel;
210    private System.Windows.Forms.TextBox nameTextBox;
211    private System.Windows.Forms.Label descriptionLabel;
212    private System.Windows.Forms.TextBox descriptionTextBox;
213    private System.Windows.Forms.ComboBox ownerComboBox;
214    private System.Windows.Forms.Label ownerLabel;
215    private System.Windows.Forms.Label createdLabel;
216    private System.Windows.Forms.DateTimePicker startDateTimePicker;
217    private System.Windows.Forms.Label startLabel;
218    private System.Windows.Forms.DateTimePicker endDateTimePicker;
219    private System.Windows.Forms.Label endLabel;
220    private System.Windows.Forms.CheckBox indefiniteCheckBox;
221    private System.Windows.Forms.TextBox createdTextBox;
222    private System.Windows.Forms.Button refreshButton;
223  }
224}
Note: See TracBrowser for help on using the repository browser.