-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
168 lines (158 loc) · 8.09 KB
/
MainForm.Designer.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
using Eth2Overwatch.Controllers;
using LockMyEthTool.Views;
namespace LockMyEthTool
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeCustomComponents()
{
this.ValidatorControlBox = new LockMyEthTool.Views.ControlBox("Validator", new ValidatorController());
this.Boxes.Add(this.ValidatorControlBox);
this.BeaconControlBox = new LockMyEthTool.Views.ControlBox("Beacon", new BeaconChainController());
this.Boxes.Add(this.BeaconControlBox);
this.Eth1ControlBox = new LockMyEthTool.Views.ControlBox("Eth 1", new Eth1Controller());
this.Boxes.Add(this.Eth1ControlBox);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.StartOnStartupCheck = new System.Windows.Forms.CheckBox();
this.UseLocalEth1NodeCheck = new System.Windows.Forms.CheckBox();
this.InitialEth2SetupButton = new System.Windows.Forms.Button();
this.Eth2TestNetLabel = new System.Windows.Forms.Label();
this.Eth2TestNet = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// ValidatorControlBox
//
this.ValidatorControlBox.BackColor = System.Drawing.SystemColors.Control;
this.ValidatorControlBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.ValidatorControlBox.Location = new System.Drawing.Point(0, 320);
this.ValidatorControlBox.Name = "ValidatorControlBox";
this.ValidatorControlBox.Size = new System.Drawing.Size(700, 320);
this.ValidatorControlBox.TabIndex = 0;
//
// BeaconControlBox
//
this.BeaconControlBox.BackColor = System.Drawing.SystemColors.Control;
this.BeaconControlBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.BeaconControlBox.Location = new System.Drawing.Point(700, 0);
this.BeaconControlBox.Name = "BeaconControlBox";
this.BeaconControlBox.Size = new System.Drawing.Size(700, 320);
this.BeaconControlBox.TabIndex = 0;
//
// Eth1ControlBox
//
this.Eth1ControlBox.BackColor = System.Drawing.SystemColors.Control;
this.Eth1ControlBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.Eth1ControlBox.Location = new System.Drawing.Point(700, 320);
this.Eth1ControlBox.Name = "Eth1ControlBox";
this.Eth1ControlBox.Size = new System.Drawing.Size(700, 320);
this.Eth1ControlBox.TabIndex = 0;
//
// UseLocalEth1NodeCheck
//
this.UseLocalEth1NodeCheck.AutoSize = true;
this.UseLocalEth1NodeCheck.Checked = true;
this.UseLocalEth1NodeCheck.CheckState = System.Windows.Forms.CheckState.Checked;
this.UseLocalEth1NodeCheck.Location = new System.Drawing.Point(12, 92);
this.UseLocalEth1NodeCheck.Name = "UseLocalEth1NodeCheck";
this.UseLocalEth1NodeCheck.Size = new System.Drawing.Size(143, 19);
this.UseLocalEth1NodeCheck.TabIndex = 3;
this.UseLocalEth1NodeCheck.Text = "Use local eth1 node";
this.UseLocalEth1NodeCheck.UseVisualStyleBackColor = true;
this.UseLocalEth1NodeCheck.CheckedChanged += new System.EventHandler(this.UseLocalEth1NodeCheck_CheckedChanged);
//
// StartOnStartupCheck
//
this.StartOnStartupCheck.AutoSize = true;
this.StartOnStartupCheck.Checked = true;
this.StartOnStartupCheck.CheckState = System.Windows.Forms.CheckState.Checked;
this.StartOnStartupCheck.Location = new System.Drawing.Point(12, 62);
this.StartOnStartupCheck.Name = "StartOnStartupCheck";
this.StartOnStartupCheck.Size = new System.Drawing.Size(143, 19);
this.StartOnStartupCheck.TabIndex = 3;
this.StartOnStartupCheck.Text = "Start on windows start";
this.StartOnStartupCheck.UseVisualStyleBackColor = true;
this.StartOnStartupCheck.CheckedChanged += new System.EventHandler(this.StartOnStartupCheck_CheckedChanged);
//
// InitialEth2SetupButton
//
this.InitialEth2SetupButton.Location = new System.Drawing.Point(12, 276);
this.InitialEth2SetupButton.Name = "InitialEth2SetupButton";
this.InitialEth2SetupButton.Size = new System.Drawing.Size(424, 23);
this.InitialEth2SetupButton.TabIndex = 4;
this.InitialEth2SetupButton.Text = "Eth2 Setup (Download executables and import validator keys)";
this.InitialEth2SetupButton.UseVisualStyleBackColor = true;
this.InitialEth2SetupButton.Click += new System.EventHandler(this.InitialEth2SetupButton_Click);
//
// Eth2TestNetLabel
//
this.Eth2TestNetLabel.AutoSize = true;
this.Eth2TestNetLabel.Location = new System.Drawing.Point(12, 25);
this.Eth2TestNetLabel.Name = "Eth2TestNetLabel";
this.Eth2TestNetLabel.Size = new System.Drawing.Size(185, 15);
this.Eth2TestNetLabel.TabIndex = 5;
this.Eth2TestNetLabel.Text = "Eth2 testnet (emtpy for main net):";
//
// Eth2TestNet
//
this.Eth2TestNet.Location = new System.Drawing.Point(203, 22);
this.Eth2TestNet.Name = "Eth2Testnet";
this.Eth2TestNet.Size = new System.Drawing.Size(164, 23);
this.Eth2TestNet.TabIndex = 6;
this.Eth2TestNet.TextChanged += new System.EventHandler(this.Eth2Testnet_TextChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(1415, 650);
this.Controls.Add(this.Eth2TestNet);
this.Controls.Add(this.Eth2TestNetLabel);
this.Controls.Add(this.InitialEth2SetupButton);
this.Controls.Add(this.UseLocalEth1NodeCheck);
this.Controls.Add(this.StartOnStartupCheck);
this.Controls.Add(this.ValidatorControlBox);
this.Controls.Add(this.BeaconControlBox);
this.Controls.Add(this.Eth1ControlBox);
this.DoubleBuffered = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MainForm";
this.Text = "Eth2 Overwatch";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ControlBox ValidatorControlBox;
private ControlBox BeaconControlBox;
private ControlBox Eth1ControlBox;
private System.Windows.Forms.CheckBox UseLocalEth1NodeCheck;
private System.Windows.Forms.CheckBox StartOnStartupCheck;
private System.Windows.Forms.Button InitialEth2SetupButton;
private System.Windows.Forms.Label Eth2TestNetLabel;
private System.Windows.Forms.TextBox Eth2TestNet;
}
}