-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
108 lines (104 loc) · 4.32 KB
/
Form1.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
namespace BluescreenSimulator
{
partial class Form1
{
/// <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);
}
#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(Form1));
exit_button = new Button();
button2 = new Button();
comboBox1 = new ComboBox();
label1 = new Label();
SuspendLayout();
//
// exit_button
//
exit_button.Font = new Font("Segoe UI Semibold", 20.25F, FontStyle.Bold, GraphicsUnit.Point, 162);
exit_button.Location = new Point(350, 77);
exit_button.Margin = new Padding(3, 4, 3, 4);
exit_button.Name = "exit_button";
exit_button.Size = new Size(113, 65);
exit_button.TabIndex = 5;
exit_button.Text = "Exit";
exit_button.UseVisualStyleBackColor = true;
exit_button.Click += exit_button_Click;
//
// button2
//
button2.Font = new Font("Segoe UI Semibold", 20.25F, FontStyle.Bold, GraphicsUnit.Point, 162);
button2.Location = new Point(15, 77);
button2.Margin = new Padding(3, 4, 3, 4);
button2.Name = "button2";
button2.Size = new Size(328, 65);
button2.TabIndex = 7;
button2.Text = "Crash!";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// comboBox1
//
comboBox1.Font = new Font("Segoe UI Semibold", 18F, FontStyle.Bold, GraphicsUnit.Point, 162);
comboBox1.FormattingEnabled = true;
comboBox1.Items.AddRange(new object[] { "Windows 10", "Windows 10 (happy)", "Windows XP to 7", "Windows 9x", "Windows 9x (system is busy)", "Windows 9x (warning)", "Windows NT", "Windows 1.0", "Windows Insider Build", "Windows Longhorn" });
comboBox1.Location = new Point(14, 16);
comboBox1.Margin = new Padding(3, 4, 3, 4);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(449, 49);
comboBox1.TabIndex = 8;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI Semibold", 10.8F, FontStyle.Bold | FontStyle.Underline, GraphicsUnit.Point, 162);
label1.ForeColor = SystemColors.Highlight;
label1.Location = new Point(235, 146);
label1.Name = "label1";
label1.Size = new Size(240, 25);
label1.TabIndex = 9;
label1.Text = "Check out the GitHub repo!";
label1.Click += label1_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(478, 174);
Controls.Add(label1);
Controls.Add(comboBox1);
Controls.Add(button2);
Controls.Add(exit_button);
Icon = (Icon)resources.GetObject("$this.Icon");
Margin = new Padding(3, 4, 3, 4);
Name = "Form1";
Text = "Bluescreen Simulator";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button exit_button;
private Button button2;
private ComboBox comboBox1;
private Label label1;
}
}