-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
31 lines (27 loc) · 881 Bytes
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using HiraKata_Kaizen.Properties;
using System;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
namespace HiraKata_Kaizen {
public partial class Settings : Form {
//Dashboard dashboard = Application.OpenForms.OfType<Dashboard>().FirstOrDefault();
public Settings() {
InitializeComponent();
}
void Settings_Load(object sender, EventArgs e) {
ControlBox = false;
}
void btnApply_Click(object sender, EventArgs e) {
}
void checkbox_CheckedChanged(object sender, EventArgs e) {
//CheckBox cb = sender as CheckBox;
//if (cb.Checked) {
// cb.Image = Properties.Resources.checkedCheckbox;
//}
//else {
// cb.Image = Properties.Resources.uncheckedCheckbox;
//}
}
}
}