Free cookie consent management tool by TermsFeed Policy Generator

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

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

added recurrence to calender (#468)

File size: 655 bytes
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}
Note: See TracBrowser for help on using the repository browser.