Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/Recurrence.Designer.cs @ 1333

Last change on this file since 1333 was 1333, checked in by whackl, 15 years ago

update recurrence UI (#468)

File size: 15.2 KB
Line 
1namespace HeuristicLab.Hive.Client.Console {
2  partial class Recurrence {
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 Windows Form 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.gbAppointment = new System.Windows.Forms.GroupBox();
27      this.chbade = new System.Windows.Forms.CheckBox();
28      this.dtpEnd = new System.Windows.Forms.DateTimePicker();
29      this.dtpToTime = new System.Windows.Forms.DateTimePicker();
30      this.label5 = new System.Windows.Forms.Label();
31      this.dtpStart = new System.Windows.Forms.DateTimePicker();
32      this.dtpFromTime = new System.Windows.Forms.DateTimePicker();
33      this.label6 = new System.Windows.Forms.Label();
34      this.gbRecurrence = new System.Windows.Forms.GroupBox();
35      this.rbtWeekly = new System.Windows.Forms.RadioButton();
36      this.rbtDaily = new System.Windows.Forms.RadioButton();
37      this.gbWeekly = new System.Windows.Forms.GroupBox();
38      this.cbSunday = new System.Windows.Forms.CheckBox();
39      this.cbSaturday = new System.Windows.Forms.CheckBox();
40      this.cbFriday = new System.Windows.Forms.CheckBox();
41      this.cbThursday = new System.Windows.Forms.CheckBox();
42      this.cbWednesday = new System.Windows.Forms.CheckBox();
43      this.cbTuesday = new System.Windows.Forms.CheckBox();
44      this.cbMonday = new System.Windows.Forms.CheckBox();
45      this.txtDays = new System.Windows.Forms.TextBox();
46      this.label4 = new System.Windows.Forms.Label();
47      this.gbDaily = new System.Windows.Forms.GroupBox();
48      this.label7 = new System.Windows.Forms.Label();
49      this.btSaveRecurrence = new System.Windows.Forms.Button();
50      this.btCancelRecurrence = new System.Windows.Forms.Button();
51      this.gbAppointment.SuspendLayout();
52      this.gbRecurrence.SuspendLayout();
53      this.gbWeekly.SuspendLayout();
54      this.gbDaily.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // gbAppointment
58      //
59      this.gbAppointment.Controls.Add(this.chbade);
60      this.gbAppointment.Controls.Add(this.dtpEnd);
61      this.gbAppointment.Controls.Add(this.dtpToTime);
62      this.gbAppointment.Controls.Add(this.label5);
63      this.gbAppointment.Controls.Add(this.dtpStart);
64      this.gbAppointment.Controls.Add(this.dtpFromTime);
65      this.gbAppointment.Controls.Add(this.label6);
66      this.gbAppointment.Location = new System.Drawing.Point(2, 2);
67      this.gbAppointment.Name = "gbAppointment";
68      this.gbAppointment.Size = new System.Drawing.Size(386, 109);
69      this.gbAppointment.TabIndex = 39;
70      this.gbAppointment.TabStop = false;
71      this.gbAppointment.Text = "Appointment";
72      this.gbAppointment.Enter += new System.EventHandler(this.gbAppointment_Enter);
73      //
74      // chbade
75      //
76      this.chbade.AutoSize = true;
77      this.chbade.Location = new System.Drawing.Point(113, 86);
78      this.chbade.Name = "chbade";
79      this.chbade.Size = new System.Drawing.Size(90, 17);
80      this.chbade.TabIndex = 39;
81      this.chbade.Text = "All Day Event";
82      this.chbade.UseVisualStyleBackColor = true;
83      this.chbade.CheckedChanged += new System.EventHandler(this.chbade_CheckedChanged);
84      //
85      // dtpEnd
86      //
87      this.dtpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Short;
88      this.dtpEnd.Location = new System.Drawing.Point(113, 56);
89      this.dtpEnd.Name = "dtpEnd";
90      this.dtpEnd.Size = new System.Drawing.Size(91, 20);
91      this.dtpEnd.TabIndex = 29;
92      //
93      // dtpToTime
94      //
95      this.dtpToTime.CustomFormat = "hh:00";
96      this.dtpToTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
97      this.dtpToTime.Location = new System.Drawing.Point(226, 56);
98      this.dtpToTime.Name = "dtpToTime";
99      this.dtpToTime.ShowUpDown = true;
100      this.dtpToTime.Size = new System.Drawing.Size(73, 20);
101      this.dtpToTime.TabIndex = 38;
102      this.dtpToTime.ValueChanged += new System.EventHandler(this.dtpToTime_ValueChanged);
103      //
104      // label5
105      //
106      this.label5.AutoSize = true;
107      this.label5.Location = new System.Drawing.Point(58, 60);
108      this.label5.Name = "label5";
109      this.label5.Size = new System.Drawing.Size(55, 13);
110      this.label5.TabIndex = 27;
111      this.label5.Text = "End Date:";
112      //
113      // dtpStart
114      //
115      this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
116      this.dtpStart.Location = new System.Drawing.Point(113, 19);
117      this.dtpStart.Name = "dtpStart";
118      this.dtpStart.Size = new System.Drawing.Size(89, 20);
119      this.dtpStart.TabIndex = 28;
120      //
121      // dtpFromTime
122      //
123      this.dtpFromTime.CustomFormat = "HH:00";
124      this.dtpFromTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
125      this.dtpFromTime.Location = new System.Drawing.Point(226, 19);
126      this.dtpFromTime.Name = "dtpFromTime";
127      this.dtpFromTime.ShowUpDown = true;
128      this.dtpFromTime.Size = new System.Drawing.Size(73, 20);
129      this.dtpFromTime.TabIndex = 30;
130      //
131      // label6
132      //
133      this.label6.AutoSize = true;
134      this.label6.Location = new System.Drawing.Point(58, 23);
135      this.label6.Name = "label6";
136      this.label6.Size = new System.Drawing.Size(58, 13);
137      this.label6.TabIndex = 25;
138      this.label6.Text = "Start Date:";
139      //
140      // gbRecurrence
141      //
142      this.gbRecurrence.Controls.Add(this.rbtWeekly);
143      this.gbRecurrence.Controls.Add(this.rbtDaily);
144      this.gbRecurrence.Location = new System.Drawing.Point(2, 117);
145      this.gbRecurrence.Name = "gbRecurrence";
146      this.gbRecurrence.Size = new System.Drawing.Size(123, 94);
147      this.gbRecurrence.TabIndex = 40;
148      this.gbRecurrence.TabStop = false;
149      this.gbRecurrence.Text = "Recurrence Pattern";
150      //
151      // rbtWeekly
152      //
153      this.rbtWeekly.AutoSize = true;
154      this.rbtWeekly.Location = new System.Drawing.Point(11, 58);
155      this.rbtWeekly.Name = "rbtWeekly";
156      this.rbtWeekly.Size = new System.Drawing.Size(61, 17);
157      this.rbtWeekly.TabIndex = 1;
158      this.rbtWeekly.Text = "Weekly";
159      this.rbtWeekly.UseVisualStyleBackColor = true;
160      this.rbtWeekly.CheckedChanged += new System.EventHandler(this.rbtDaily_CheckedChanged);
161      //
162      // rbtDaily
163      //
164      this.rbtDaily.AutoSize = true;
165      this.rbtDaily.Checked = true;
166      this.rbtDaily.Location = new System.Drawing.Point(11, 34);
167      this.rbtDaily.Name = "rbtDaily";
168      this.rbtDaily.Size = new System.Drawing.Size(48, 17);
169      this.rbtDaily.TabIndex = 0;
170      this.rbtDaily.TabStop = true;
171      this.rbtDaily.Text = "Daily";
172      this.rbtDaily.UseVisualStyleBackColor = true;
173      this.rbtDaily.CheckedChanged += new System.EventHandler(this.rbtDaily_CheckedChanged);
174      //
175      // gbWeekly
176      //
177      this.gbWeekly.Controls.Add(this.cbSunday);
178      this.gbWeekly.Controls.Add(this.cbSaturday);
179      this.gbWeekly.Controls.Add(this.cbFriday);
180      this.gbWeekly.Controls.Add(this.cbThursday);
181      this.gbWeekly.Controls.Add(this.cbWednesday);
182      this.gbWeekly.Controls.Add(this.cbTuesday);
183      this.gbWeekly.Controls.Add(this.cbMonday);
184      this.gbWeekly.Location = new System.Drawing.Point(123, 117);
185      this.gbWeekly.Name = "gbWeekly";
186      this.gbWeekly.Size = new System.Drawing.Size(265, 94);
187      this.gbWeekly.TabIndex = 42;
188      this.gbWeekly.TabStop = false;
189      this.gbWeekly.Visible = false;
190      //
191      // cbSunday
192      //
193      this.cbSunday.AutoSize = true;
194      this.cbSunday.Location = new System.Drawing.Point(11, 58);
195      this.cbSunday.Name = "cbSunday";
196      this.cbSunday.Size = new System.Drawing.Size(62, 17);
197      this.cbSunday.TabIndex = 6;
198      this.cbSunday.Text = "Sunday";
199      this.cbSunday.UseVisualStyleBackColor = true;
200      //
201      // cbSaturday
202      //
203      this.cbSaturday.AutoSize = true;
204      this.cbSaturday.Location = new System.Drawing.Point(173, 37);
205      this.cbSaturday.Name = "cbSaturday";
206      this.cbSaturday.Size = new System.Drawing.Size(68, 17);
207      this.cbSaturday.TabIndex = 5;
208      this.cbSaturday.Text = "Saturday";
209      this.cbSaturday.UseVisualStyleBackColor = true;
210      //
211      // cbFriday
212      //
213      this.cbFriday.AutoSize = true;
214      this.cbFriday.Location = new System.Drawing.Point(97, 37);
215      this.cbFriday.Name = "cbFriday";
216      this.cbFriday.Size = new System.Drawing.Size(54, 17);
217      this.cbFriday.TabIndex = 4;
218      this.cbFriday.Text = "Friday";
219      this.cbFriday.UseVisualStyleBackColor = true;
220      //
221      // cbThursday
222      //
223      this.cbThursday.AutoSize = true;
224      this.cbThursday.Location = new System.Drawing.Point(11, 37);
225      this.cbThursday.Name = "cbThursday";
226      this.cbThursday.Size = new System.Drawing.Size(70, 17);
227      this.cbThursday.TabIndex = 3;
228      this.cbThursday.Text = "Thursday";
229      this.cbThursday.UseVisualStyleBackColor = true;
230      //
231      // cbWednesday
232      //
233      this.cbWednesday.AutoSize = true;
234      this.cbWednesday.Location = new System.Drawing.Point(173, 16);
235      this.cbWednesday.Name = "cbWednesday";
236      this.cbWednesday.Size = new System.Drawing.Size(86, 17);
237      this.cbWednesday.TabIndex = 2;
238      this.cbWednesday.Text = "Wednesday ";
239      this.cbWednesday.UseVisualStyleBackColor = true;
240      //
241      // cbTuesday
242      //
243      this.cbTuesday.AutoSize = true;
244      this.cbTuesday.Location = new System.Drawing.Point(97, 16);
245      this.cbTuesday.Name = "cbTuesday";
246      this.cbTuesday.Size = new System.Drawing.Size(67, 17);
247      this.cbTuesday.TabIndex = 1;
248      this.cbTuesday.Text = "Tuesday";
249      this.cbTuesday.UseVisualStyleBackColor = true;
250      //
251      // cbMonday
252      //
253      this.cbMonday.AutoSize = true;
254      this.cbMonday.Location = new System.Drawing.Point(11, 16);
255      this.cbMonday.Name = "cbMonday";
256      this.cbMonday.Size = new System.Drawing.Size(64, 17);
257      this.cbMonday.TabIndex = 0;
258      this.cbMonday.Text = "Monday";
259      this.cbMonday.UseVisualStyleBackColor = true;
260      //
261      // txtDays
262      //
263      this.txtDays.Location = new System.Drawing.Point(50, 17);
264      this.txtDays.Name = "txtDays";
265      this.txtDays.Size = new System.Drawing.Size(30, 20);
266      this.txtDays.TabIndex = 24;
267      //
268      // label4
269      //
270      this.label4.AutoSize = true;
271      this.label4.Location = new System.Drawing.Point(10, 20);
272      this.label4.Name = "label4";
273      this.label4.Size = new System.Drawing.Size(34, 13);
274      this.label4.TabIndex = 23;
275      this.label4.Text = "Every";
276      //
277      // gbDaily
278      //
279      this.gbDaily.Controls.Add(this.label7);
280      this.gbDaily.Controls.Add(this.txtDays);
281      this.gbDaily.Controls.Add(this.label4);
282      this.gbDaily.Location = new System.Drawing.Point(123, 117);
283      this.gbDaily.Name = "gbDaily";
284      this.gbDaily.Size = new System.Drawing.Size(265, 94);
285      this.gbDaily.TabIndex = 41;
286      this.gbDaily.TabStop = false;
287      //
288      // label7
289      //
290      this.label7.AutoSize = true;
291      this.label7.Location = new System.Drawing.Point(86, 20);
292      this.label7.Name = "label7";
293      this.label7.Size = new System.Drawing.Size(37, 13);
294      this.label7.TabIndex = 25;
295      this.label7.Text = "Day(s)";
296      //
297      // btSaveRecurrence
298      //
299      this.btSaveRecurrence.Location = new System.Drawing.Point(2, 217);
300      this.btSaveRecurrence.Name = "btSaveRecurrence";
301      this.btSaveRecurrence.Size = new System.Drawing.Size(147, 23);
302      this.btSaveRecurrence.TabIndex = 43;
303      this.btSaveRecurrence.Text = "Save";
304      this.btSaveRecurrence.UseVisualStyleBackColor = true;
305      //
306      // btCancelRecurrence
307      //
308      this.btCancelRecurrence.Location = new System.Drawing.Point(241, 217);
309      this.btCancelRecurrence.Name = "btCancelRecurrence";
310      this.btCancelRecurrence.Size = new System.Drawing.Size(147, 23);
311      this.btCancelRecurrence.TabIndex = 44;
312      this.btCancelRecurrence.Text = "Cancel";
313      this.btCancelRecurrence.UseVisualStyleBackColor = true;
314      this.btCancelRecurrence.Click += new System.EventHandler(this.btCancelRecurrence_Click);
315      //
316      // Recurrence
317      //
318      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
319      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
320      this.ClientSize = new System.Drawing.Size(393, 243);
321      this.Controls.Add(this.btCancelRecurrence);
322      this.Controls.Add(this.btSaveRecurrence);
323      this.Controls.Add(this.gbWeekly);
324      this.Controls.Add(this.gbDaily);
325      this.Controls.Add(this.gbRecurrence);
326      this.Controls.Add(this.gbAppointment);
327      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
328      this.Name = "Recurrence";
329      this.Text = "Recurrence";
330      this.gbAppointment.ResumeLayout(false);
331      this.gbAppointment.PerformLayout();
332      this.gbRecurrence.ResumeLayout(false);
333      this.gbRecurrence.PerformLayout();
334      this.gbWeekly.ResumeLayout(false);
335      this.gbWeekly.PerformLayout();
336      this.gbDaily.ResumeLayout(false);
337      this.gbDaily.PerformLayout();
338      this.ResumeLayout(false);
339
340    }
341
342    #endregion
343
344    private System.Windows.Forms.GroupBox gbAppointment;
345    private System.Windows.Forms.GroupBox gbRecurrence;
346    private System.Windows.Forms.RadioButton rbtWeekly;
347    private System.Windows.Forms.RadioButton rbtDaily;
348    private System.Windows.Forms.TextBox txtDays;
349    private System.Windows.Forms.Label label4;
350    private System.Windows.Forms.GroupBox gbDaily;
351    private System.Windows.Forms.DateTimePicker dtpEnd;
352    private System.Windows.Forms.DateTimePicker dtpStart;
353    private System.Windows.Forms.Label label5;
354    private System.Windows.Forms.Label label6;
355    private System.Windows.Forms.Label label7;
356    private System.Windows.Forms.GroupBox gbWeekly;
357    private System.Windows.Forms.CheckBox cbSunday;
358    private System.Windows.Forms.CheckBox cbSaturday;
359    private System.Windows.Forms.CheckBox cbFriday;
360    private System.Windows.Forms.CheckBox cbThursday;
361    private System.Windows.Forms.CheckBox cbWednesday;
362    private System.Windows.Forms.CheckBox cbTuesday;
363    private System.Windows.Forms.CheckBox cbMonday;
364    private System.Windows.Forms.Button btSaveRecurrence;
365    private System.Windows.Forms.Button btCancelRecurrence;
366    private System.Windows.Forms.DateTimePicker dtpFromTime;
367    private System.Windows.Forms.DateTimePicker dtpToTime;
368    private System.Windows.Forms.CheckBox chbade;
369  }
370}
Note: See TracBrowser for help on using the repository browser.