-
Notifications
You must be signed in to change notification settings - Fork 0
/
EHBSettings.cs
47 lines (42 loc) · 1.36 KB
/
EHBSettings.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System.Windows.Forms;
namespace EHBSplitter
{
class EHBSettings : UserControl
{
private CheckBox checkBox;
internal bool splitOnArrival
{
get => checkBox.Checked;
set => checkBox.Checked = value;
}
private void InitializeComponent()
{
this.checkBox = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// checkBox
//
this.checkBox.AutoSize = true;
this.checkBox.Checked = true;
this.checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox.Location = new System.Drawing.Point(3, 3);
this.checkBox.Name = "checkBox";
this.checkBox.Size = new System.Drawing.Size(141, 17);
this.checkBox.TabIndex = 0;
this.checkBox.Text = "Split after boat cutscene";
this.checkBox.UseVisualStyleBackColor = true;
//
// EHBSettings
//
this.AutoSize = true;
this.Controls.Add(this.checkBox);
this.Name = "EHBSettings";
this.ResumeLayout(false);
this.PerformLayout();
}
internal EHBSettings()
{
InitializeComponent();
}
}
}