Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Data;
|
---|
5 | using System.Drawing;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 |
|
---|
10 | namespace 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.