Rev | Line | |
---|
[1257] | 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 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.