Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/09 14:35:19 (15 years ago)
Author:
whackl
Message:

added recurring appoinment (#468)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Console/Recurrence.Designer.cs

    r1333 r1511  
    1 namespace HeuristicLab.Hive.Client.Console {
    2   partial class Recurrence {
     1namespace HeuristicLab.Hive.Client.Console
     2{
     3  partial class Recurrence
     4  {
    35    /// <summary>
    46    /// Required designer variable.
     
    1012    /// </summary>
    1113    /// <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    protected override void Dispose(bool disposing)
     15    {
     16      if (disposing && (components != null))
     17      {
    1418        components.Dispose();
    1519      }
     
    2327    /// the contents of this method with the code editor.
    2428    /// </summary>
    25     private void InitializeComponent() {
     29    private void InitializeComponent()
     30    {
    2631      this.gbAppointment = new System.Windows.Forms.GroupBox();
    2732      this.chbade = new System.Windows.Forms.CheckBox();
     
    3237      this.dtpFromTime = new System.Windows.Forms.DateTimePicker();
    3338      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();
     39      this.txtDays = new System.Windows.Forms.TextBox();
     40      this.label4 = new System.Windows.Forms.Label();
     41      this.label7 = new System.Windows.Forms.Label();
     42      this.btSaveRecurrence = new System.Windows.Forms.Button();
     43      this.btCancelRecurrence = new System.Windows.Forms.Button();
    3744      this.gbWeekly = new System.Windows.Forms.GroupBox();
    3845      this.cbSunday = new System.Windows.Forms.CheckBox();
     
    4350      this.cbTuesday = new System.Windows.Forms.CheckBox();
    4451      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();
    5152      this.gbAppointment.SuspendLayout();
    52       this.gbRecurrence.SuspendLayout();
    5353      this.gbWeekly.SuspendLayout();
    54       this.gbDaily.SuspendLayout();
    5554      this.SuspendLayout();
    5655      //
     
    7069      this.gbAppointment.TabStop = false;
    7170      this.gbAppointment.Text = "Appointment";
    72       this.gbAppointment.Enter += new System.EventHandler(this.gbAppointment_Enter);
    7371      //
    7472      // chbade
     
    8179      this.chbade.Text = "All Day Event";
    8280      this.chbade.UseVisualStyleBackColor = true;
    83       this.chbade.CheckedChanged += new System.EventHandler(this.chbade_CheckedChanged);
    8481      //
    8582      // dtpEnd
     
    9390      // dtpToTime
    9491      //
    95       this.dtpToTime.CustomFormat = "hh:00";
     92      this.dtpToTime.CustomFormat = "HH:00";
    9693      this.dtpToTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
    9794      this.dtpToTime.Location = new System.Drawing.Point(226, 56);
     
    10097      this.dtpToTime.Size = new System.Drawing.Size(73, 20);
    10198      this.dtpToTime.TabIndex = 38;
    102       this.dtpToTime.ValueChanged += new System.EventHandler(this.dtpToTime_ValueChanged);
    10399      //
    104100      // label5
     
    138134      this.label6.Text = "Start Date:";
    139135      //
    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       //
    261136      // txtDays
    262137      //
    263       this.txtDays.Location = new System.Drawing.Point(50, 17);
     138      this.txtDays.Location = new System.Drawing.Point(160, 13);
    264139      this.txtDays.Name = "txtDays";
    265140      this.txtDays.Size = new System.Drawing.Size(30, 20);
    266141      this.txtDays.TabIndex = 24;
     142      this.txtDays.Text = "1";
     143      this.txtDays.Visible = false;
    267144      //
    268145      // label4
    269146      //
    270147      this.label4.AutoSize = true;
    271       this.label4.Location = new System.Drawing.Point(10, 20);
     148      this.label4.Location = new System.Drawing.Point(120, 16);
    272149      this.label4.Name = "label4";
    273150      this.label4.Size = new System.Drawing.Size(34, 13);
    274151      this.label4.TabIndex = 23;
    275152      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;
     153      this.label4.Visible = false;
    287154      //
    288155      // label7
    289156      //
    290157      this.label7.AutoSize = true;
    291       this.label7.Location = new System.Drawing.Point(86, 20);
     158      this.label7.Location = new System.Drawing.Point(196, 16);
    292159      this.label7.Name = "label7";
    293       this.label7.Size = new System.Drawing.Size(37, 13);
     160      this.label7.Size = new System.Drawing.Size(59, 13);
    294161      this.label7.TabIndex = 25;
    295       this.label7.Text = "Day(s)";
     162      this.label7.Text = "week(s) on";
     163      this.label7.Visible = false;
    296164      //
    297165      // btSaveRecurrence
     
    303171      this.btSaveRecurrence.Text = "Save";
    304172      this.btSaveRecurrence.UseVisualStyleBackColor = true;
     173      this.btSaveRecurrence.Click += new System.EventHandler(this.btSaveRecurrence_Click);
    305174      //
    306175      // btCancelRecurrence
     
    314183      this.btCancelRecurrence.Click += new System.EventHandler(this.btCancelRecurrence_Click);
    315184      //
     185      // gbWeekly
     186      //
     187      this.gbWeekly.Controls.Add(this.label7);
     188      this.gbWeekly.Controls.Add(this.cbSunday);
     189      this.gbWeekly.Controls.Add(this.txtDays);
     190      this.gbWeekly.Controls.Add(this.cbSaturday);
     191      this.gbWeekly.Controls.Add(this.cbFriday);
     192      this.gbWeekly.Controls.Add(this.cbThursday);
     193      this.gbWeekly.Controls.Add(this.label4);
     194      this.gbWeekly.Controls.Add(this.cbWednesday);
     195      this.gbWeekly.Controls.Add(this.cbTuesday);
     196      this.gbWeekly.Controls.Add(this.cbMonday);
     197      this.gbWeekly.Location = new System.Drawing.Point(2, 111);
     198      this.gbWeekly.Name = "gbWeekly";
     199      this.gbWeekly.Size = new System.Drawing.Size(386, 100);
     200      this.gbWeekly.TabIndex = 42;
     201      this.gbWeekly.TabStop = false;
     202      this.gbWeekly.Text = "Days of week";
     203      //
     204      // cbSunday
     205      //
     206      this.cbSunday.AutoSize = true;
     207      this.cbSunday.Location = new System.Drawing.Point(199, 65);
     208      this.cbSunday.Name = "cbSunday";
     209      this.cbSunday.Size = new System.Drawing.Size(62, 17);
     210      this.cbSunday.TabIndex = 6;
     211      this.cbSunday.Text = "Sunday";
     212      this.cbSunday.UseVisualStyleBackColor = true;
     213      //
     214      // cbSaturday
     215      //
     216      this.cbSaturday.AutoSize = true;
     217      this.cbSaturday.Location = new System.Drawing.Point(122, 65);
     218      this.cbSaturday.Name = "cbSaturday";
     219      this.cbSaturday.Size = new System.Drawing.Size(68, 17);
     220      this.cbSaturday.TabIndex = 5;
     221      this.cbSaturday.Text = "Saturday";
     222      this.cbSaturday.UseVisualStyleBackColor = true;
     223      //
     224      // cbFriday
     225      //
     226      this.cbFriday.AutoSize = true;
     227      this.cbFriday.Location = new System.Drawing.Point(37, 65);
     228      this.cbFriday.Name = "cbFriday";
     229      this.cbFriday.Size = new System.Drawing.Size(54, 17);
     230      this.cbFriday.TabIndex = 4;
     231      this.cbFriday.Text = "Friday";
     232      this.cbFriday.UseVisualStyleBackColor = true;
     233      //
     234      // cbThursday
     235      //
     236      this.cbThursday.AutoSize = true;
     237      this.cbThursday.Location = new System.Drawing.Point(289, 40);
     238      this.cbThursday.Name = "cbThursday";
     239      this.cbThursday.Size = new System.Drawing.Size(70, 17);
     240      this.cbThursday.TabIndex = 3;
     241      this.cbThursday.Text = "Thursday";
     242      this.cbThursday.UseVisualStyleBackColor = true;
     243      //
     244      // cbWednesday
     245      //
     246      this.cbWednesday.AutoSize = true;
     247      this.cbWednesday.Location = new System.Drawing.Point(199, 42);
     248      this.cbWednesday.Name = "cbWednesday";
     249      this.cbWednesday.Size = new System.Drawing.Size(86, 17);
     250      this.cbWednesday.TabIndex = 2;
     251      this.cbWednesday.Text = "Wednesday ";
     252      this.cbWednesday.UseVisualStyleBackColor = true;
     253      //
     254      // cbTuesday
     255      //
     256      this.cbTuesday.AutoSize = true;
     257      this.cbTuesday.Location = new System.Drawing.Point(123, 42);
     258      this.cbTuesday.Name = "cbTuesday";
     259      this.cbTuesday.Size = new System.Drawing.Size(67, 17);
     260      this.cbTuesday.TabIndex = 1;
     261      this.cbTuesday.Text = "Tuesday";
     262      this.cbTuesday.UseVisualStyleBackColor = true;
     263      //
     264      // cbMonday
     265      //
     266      this.cbMonday.AutoSize = true;
     267      this.cbMonday.Location = new System.Drawing.Point(37, 42);
     268      this.cbMonday.Name = "cbMonday";
     269      this.cbMonday.Size = new System.Drawing.Size(64, 17);
     270      this.cbMonday.TabIndex = 0;
     271      this.cbMonday.Text = "Monday";
     272      this.cbMonday.UseVisualStyleBackColor = true;
     273      //
    316274      // Recurrence
    317275      //
     
    319277      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    320278      this.ClientSize = new System.Drawing.Size(393, 243);
     279      this.Controls.Add(this.gbWeekly);
    321280      this.Controls.Add(this.btCancelRecurrence);
    322281      this.Controls.Add(this.btSaveRecurrence);
    323       this.Controls.Add(this.gbWeekly);
    324       this.Controls.Add(this.gbDaily);
    325       this.Controls.Add(this.gbRecurrence);
    326282      this.Controls.Add(this.gbAppointment);
    327283      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     
    330286      this.gbAppointment.ResumeLayout(false);
    331287      this.gbAppointment.PerformLayout();
    332       this.gbRecurrence.ResumeLayout(false);
    333       this.gbRecurrence.PerformLayout();
    334288      this.gbWeekly.ResumeLayout(false);
    335289      this.gbWeekly.PerformLayout();
    336       this.gbDaily.ResumeLayout(false);
    337       this.gbDaily.PerformLayout();
    338290      this.ResumeLayout(false);
    339291
     
    343295
    344296    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;
    348297    private System.Windows.Forms.TextBox txtDays;
    349298    private System.Windows.Forms.Label label4;
    350     private System.Windows.Forms.GroupBox gbDaily;
    351299    private System.Windows.Forms.DateTimePicker dtpEnd;
    352300    private System.Windows.Forms.DateTimePicker dtpStart;
     
    354302    private System.Windows.Forms.Label label6;
    355303    private System.Windows.Forms.Label label7;
     304    private System.Windows.Forms.Button btSaveRecurrence;
     305    private System.Windows.Forms.Button btCancelRecurrence;
     306    private System.Windows.Forms.DateTimePicker dtpFromTime;
     307    private System.Windows.Forms.DateTimePicker dtpToTime;
     308    private System.Windows.Forms.CheckBox chbade;
    356309    private System.Windows.Forms.GroupBox gbWeekly;
    357310    private System.Windows.Forms.CheckBox cbSunday;
     
    362315    private System.Windows.Forms.CheckBox cbTuesday;
    363316    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;
    369317  }
    370318}
Note: See TracChangeset for help on using the changeset viewer.