Free cookie consent management tool by TermsFeed Policy Generator

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

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

update recurrence UI (#468)

File size: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.Hive.Client.Console {
11  public partial class Recurrence : Form {
12    public Recurrence() {
13      InitializeComponent();
14    }
15
16    private void rbtDaily_CheckedChanged(object sender, EventArgs e) {
17      if (rbtDaily.Checked) {
18        gbDaily.Visible = true;
19        gbWeekly.Visible = false;
20      } else if (rbtWeekly.Checked) {
21        gbDaily.Visible = false;
22        gbWeekly.Visible = true;
23      }
24    }
25
26    private void btCancelRecurrence_Click(object sender, EventArgs e) {
27      this.Close();
28    }
29
30    private void gbAppointment_Enter(object sender, EventArgs e) {
31
32    }
33
34    private void cmbEnd_Click(object sender, EventArgs e) {
35
36    }
37
38    private void dtpToTime_ValueChanged(object sender, EventArgs e) {
39
40    }
41
42    private void chbade_CheckedChanged(object sender, EventArgs e) {
43        dtpFromTime.Visible = !chbade.Checked;
44        dtpToTime.Visible = !chbade.Checked;
45    }
46  }
47}
Note: See TracBrowser for help on using the repository browser.