Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.Clients.Hive.Administrator/3.3/Views/Recurrence.Designer.cs @ 16720

Last change on this file since 16720 was 16720, checked in by ddorfmei, 5 years ago

#2931: Merged revision(s) 16235-16719 from trunk

File size: 12.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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.Clients.Hive.Administrator.Views {
23  partial class Recurrence {
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 Windows Form 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.gbAppointment = new System.Windows.Forms.GroupBox();
48      this.chbade = new System.Windows.Forms.CheckBox();
49      this.dtpEnd = new System.Windows.Forms.DateTimePicker();
50      this.label5 = new System.Windows.Forms.Label();
51      this.dtpStart = new System.Windows.Forms.DateTimePicker();
52      this.label6 = new System.Windows.Forms.Label();
53      this.btSaveRecurrence = new System.Windows.Forms.Button();
54      this.btCancelRecurrence = new System.Windows.Forms.Button();
55      this.gbWeekly = new System.Windows.Forms.GroupBox();
56      this.cbSunday = new System.Windows.Forms.CheckBox();
57      this.cbSaturday = new System.Windows.Forms.CheckBox();
58      this.cbFriday = new System.Windows.Forms.CheckBox();
59      this.cbThursday = new System.Windows.Forms.CheckBox();
60      this.cbWednesday = new System.Windows.Forms.CheckBox();
61      this.cbTuesday = new System.Windows.Forms.CheckBox();
62      this.cbMonday = new System.Windows.Forms.CheckBox();
63      this.appointmentTypeView = new HeuristicLab.Clients.Hive.Administrator.Views.DowntimeTypeView();
64      this.gbDowntimeType = new System.Windows.Forms.GroupBox();
65      this.gbAppointment.SuspendLayout();
66      this.gbWeekly.SuspendLayout();
67      this.gbDowntimeType.SuspendLayout();
68      this.SuspendLayout();
69      //
70      // gbAppointment
71      //
72      this.gbAppointment.Controls.Add(this.chbade);
73      this.gbAppointment.Controls.Add(this.dtpEnd);
74      this.gbAppointment.Controls.Add(this.label5);
75      this.gbAppointment.Controls.Add(this.dtpStart);
76      this.gbAppointment.Controls.Add(this.label6);
77      this.gbAppointment.Location = new System.Drawing.Point(2, 2);
78      this.gbAppointment.Name = "gbAppointment";
79      this.gbAppointment.Size = new System.Drawing.Size(386, 109);
80      this.gbAppointment.TabIndex = 39;
81      this.gbAppointment.TabStop = false;
82      this.gbAppointment.Text = "Appointment";
83      //
84      // chbade
85      //
86      this.chbade.AutoSize = true;
87      this.chbade.Location = new System.Drawing.Point(113, 86);
88      this.chbade.Name = "chbade";
89      this.chbade.Size = new System.Drawing.Size(90, 17);
90      this.chbade.TabIndex = 39;
91      this.chbade.Text = "All Day Event";
92      this.chbade.UseVisualStyleBackColor = true;
93      //
94      // dtpEnd
95      //
96      this.dtpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
97      this.dtpEnd.CustomFormat = "ddd, dd.MM.yyyy, HH:mm:ss";
98      this.dtpEnd.Location = new System.Drawing.Point(113, 56);
99      this.dtpEnd.Name = "dtpEnd";
100      this.dtpEnd.Size = new System.Drawing.Size(175, 20);
101      this.dtpEnd.TabIndex = 29;
102      //
103      // label5
104      //
105      this.label5.AutoSize = true;
106      this.label5.Location = new System.Drawing.Point(58, 60);
107      this.label5.Name = "label5";
108      this.label5.Size = new System.Drawing.Size(55, 13);
109      this.label5.TabIndex = 27;
110      this.label5.Text = "End Date:";
111      //
112      // dtpStart
113      //
114      this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
115      this.dtpStart.CustomFormat = "ddd, dd.MM.yyyy, HH:mm:ss";
116      this.dtpStart.Location = new System.Drawing.Point(113, 19);
117      this.dtpStart.Name = "dtpStart";
118      this.dtpStart.Size = new System.Drawing.Size(175, 20);
119      this.dtpStart.TabIndex = 28;
120      //
121      // label6
122      //
123      this.label6.AutoSize = true;
124      this.label6.Location = new System.Drawing.Point(58, 23);
125      this.label6.Name = "label6";
126      this.label6.Size = new System.Drawing.Size(58, 13);
127      this.label6.TabIndex = 25;
128      this.label6.Text = "Start Date:";
129      //
130      // btSaveRecurrence
131      //
132      this.btSaveRecurrence.Location = new System.Drawing.Point(2, 298);
133      this.btSaveRecurrence.Name = "btSaveRecurrence";
134      this.btSaveRecurrence.Size = new System.Drawing.Size(147, 23);
135      this.btSaveRecurrence.TabIndex = 43;
136      this.btSaveRecurrence.Text = "Save";
137      this.btSaveRecurrence.UseVisualStyleBackColor = true;
138      this.btSaveRecurrence.Click += new System.EventHandler(this.btSaveRecurrence_Click);
139      //
140      // btCancelRecurrence
141      //
142      this.btCancelRecurrence.Location = new System.Drawing.Point(241, 298);
143      this.btCancelRecurrence.Name = "btCancelRecurrence";
144      this.btCancelRecurrence.Size = new System.Drawing.Size(147, 23);
145      this.btCancelRecurrence.TabIndex = 44;
146      this.btCancelRecurrence.Text = "Cancel";
147      this.btCancelRecurrence.UseVisualStyleBackColor = true;
148      this.btCancelRecurrence.Click += new System.EventHandler(this.btCancelRecurrence_Click);
149      //
150      // gbWeekly
151      //
152      this.gbWeekly.Controls.Add(this.cbSunday);
153      this.gbWeekly.Controls.Add(this.cbSaturday);
154      this.gbWeekly.Controls.Add(this.cbFriday);
155      this.gbWeekly.Controls.Add(this.cbThursday);
156      this.gbWeekly.Controls.Add(this.cbWednesday);
157      this.gbWeekly.Controls.Add(this.cbTuesday);
158      this.gbWeekly.Controls.Add(this.cbMonday);
159      this.gbWeekly.Location = new System.Drawing.Point(2, 111);
160      this.gbWeekly.Name = "gbWeekly";
161      this.gbWeekly.Size = new System.Drawing.Size(386, 100);
162      this.gbWeekly.TabIndex = 42;
163      this.gbWeekly.TabStop = false;
164      this.gbWeekly.Text = "Days of week";
165      //
166      // cbSunday
167      //
168      this.cbSunday.AutoSize = true;
169      this.cbSunday.Location = new System.Drawing.Point(199, 65);
170      this.cbSunday.Name = "cbSunday";
171      this.cbSunday.Size = new System.Drawing.Size(62, 17);
172      this.cbSunday.TabIndex = 6;
173      this.cbSunday.Text = "Sunday";
174      this.cbSunday.UseVisualStyleBackColor = true;
175      //
176      // cbSaturday
177      //
178      this.cbSaturday.AutoSize = true;
179      this.cbSaturday.Location = new System.Drawing.Point(122, 65);
180      this.cbSaturday.Name = "cbSaturday";
181      this.cbSaturday.Size = new System.Drawing.Size(68, 17);
182      this.cbSaturday.TabIndex = 5;
183      this.cbSaturday.Text = "Saturday";
184      this.cbSaturday.UseVisualStyleBackColor = true;
185      //
186      // cbFriday
187      //
188      this.cbFriday.AutoSize = true;
189      this.cbFriday.Location = new System.Drawing.Point(37, 65);
190      this.cbFriday.Name = "cbFriday";
191      this.cbFriday.Size = new System.Drawing.Size(54, 17);
192      this.cbFriday.TabIndex = 4;
193      this.cbFriday.Text = "Friday";
194      this.cbFriday.UseVisualStyleBackColor = true;
195      //
196      // cbThursday
197      //
198      this.cbThursday.AutoSize = true;
199      this.cbThursday.Location = new System.Drawing.Point(289, 40);
200      this.cbThursday.Name = "cbThursday";
201      this.cbThursday.Size = new System.Drawing.Size(70, 17);
202      this.cbThursday.TabIndex = 3;
203      this.cbThursday.Text = "Thursday";
204      this.cbThursday.UseVisualStyleBackColor = true;
205      //
206      // cbWednesday
207      //
208      this.cbWednesday.AutoSize = true;
209      this.cbWednesday.Location = new System.Drawing.Point(199, 42);
210      this.cbWednesday.Name = "cbWednesday";
211      this.cbWednesday.Size = new System.Drawing.Size(86, 17);
212      this.cbWednesday.TabIndex = 2;
213      this.cbWednesday.Text = "Wednesday ";
214      this.cbWednesday.UseVisualStyleBackColor = true;
215      //
216      // cbTuesday
217      //
218      this.cbTuesday.AutoSize = true;
219      this.cbTuesday.Location = new System.Drawing.Point(123, 42);
220      this.cbTuesday.Name = "cbTuesday";
221      this.cbTuesday.Size = new System.Drawing.Size(67, 17);
222      this.cbTuesday.TabIndex = 1;
223      this.cbTuesday.Text = "Tuesday";
224      this.cbTuesday.UseVisualStyleBackColor = true;
225      //
226      // cbMonday
227      //
228      this.cbMonday.AutoSize = true;
229      this.cbMonday.Location = new System.Drawing.Point(37, 42);
230      this.cbMonday.Name = "cbMonday";
231      this.cbMonday.Size = new System.Drawing.Size(64, 17);
232      this.cbMonday.TabIndex = 0;
233      this.cbMonday.Text = "Monday";
234      this.cbMonday.UseVisualStyleBackColor = true;
235      //
236      // appointmentTypeView
237      //
238      this.appointmentTypeView.DowntimeType = HeuristicLab.Clients.Hive.DowntimeType.Offline;
239      this.appointmentTypeView.Location = new System.Drawing.Point(10, 19);
240      this.appointmentTypeView.Name = "appointmentTypeView";
241      this.appointmentTypeView.Size = new System.Drawing.Size(120, 50);
242      this.appointmentTypeView.TabIndex = 45;
243      //
244      // gbDowntimeType
245      //
246      this.gbDowntimeType.Controls.Add(this.appointmentTypeView);
247      this.gbDowntimeType.Location = new System.Drawing.Point(2, 217);
248      this.gbDowntimeType.Name = "gbDowntimeType";
249      this.gbDowntimeType.Size = new System.Drawing.Size(386, 75);
250      this.gbDowntimeType.TabIndex = 46;
251      this.gbDowntimeType.TabStop = false;
252      this.gbDowntimeType.Text = "Type of Downtime";
253      //
254      // Recurrence
255      //
256      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
257      this.ClientSize = new System.Drawing.Size(393, 332);
258      this.Controls.Add(this.gbDowntimeType);
259      this.Controls.Add(this.gbWeekly);
260      this.Controls.Add(this.btCancelRecurrence);
261      this.Controls.Add(this.btSaveRecurrence);
262      this.Controls.Add(this.gbAppointment);
263      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
264      this.Name = "Recurrence";
265      this.ShowIcon = false;
266      this.ShowInTaskbar = false;
267      this.Text = "Recurrence";
268      this.TopMost = true;
269      this.gbAppointment.ResumeLayout(false);
270      this.gbAppointment.PerformLayout();
271      this.gbWeekly.ResumeLayout(false);
272      this.gbWeekly.PerformLayout();
273      this.gbDowntimeType.ResumeLayout(false);
274      this.ResumeLayout(false);
275
276    }
277
278    #endregion
279
280    private System.Windows.Forms.GroupBox gbAppointment;
281    private System.Windows.Forms.DateTimePicker dtpEnd;
282    private System.Windows.Forms.DateTimePicker dtpStart;
283    private System.Windows.Forms.Label label5;
284    private System.Windows.Forms.Label label6;
285    private System.Windows.Forms.Button btSaveRecurrence;
286    private System.Windows.Forms.Button btCancelRecurrence;
287    private System.Windows.Forms.CheckBox chbade;
288    private System.Windows.Forms.GroupBox gbWeekly;
289    private System.Windows.Forms.CheckBox cbSunday;
290    private System.Windows.Forms.CheckBox cbSaturday;
291    private System.Windows.Forms.CheckBox cbFriday;
292    private System.Windows.Forms.CheckBox cbThursday;
293    private System.Windows.Forms.CheckBox cbWednesday;
294    private System.Windows.Forms.CheckBox cbTuesday;
295    private System.Windows.Forms.CheckBox cbMonday;
296    private DowntimeTypeView appointmentTypeView;
297    private System.Windows.Forms.GroupBox gbDowntimeType;
298  }
299}
Note: See TracBrowser for help on using the repository browser.