-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm5.Designer.cs
128 lines (123 loc) · 4.99 KB
/
Form5.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
namespace WindowkillSeedFinderGUI {
partial class SeedFound {
/// <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() {
ListViewItem listViewItem1 = new ListViewItem("1|1 Spiker");
ListViewItem listViewItem2 = new ListViewItem("2|2 Wyrm");
ListViewItem listViewItem3 = new ListViewItem("3|2 Slimest");
ListViewItem listViewItem4 = new ListViewItem("4|3 Smiley");
ListViewItem listViewItem5 = new ListViewItem("5|3 Orb array");
ListViewItem listViewItem6 = new ListViewItem(new string[] { "6|4 Miasma", "`1231234" }, -1);
ListViewBosses = new ListView();
columnHeader1 = new ColumnHeader();
LabelFindings = new Label();
PanelStats = new Panel();
LabelStats = new Label();
TextBoxSeed = new TextBox();
PanelStats.SuspendLayout();
SuspendLayout();
//
// ListViewBosses
//
ListViewBosses.Columns.AddRange(new ColumnHeader[] { columnHeader1 });
ListViewBosses.HeaderStyle = ColumnHeaderStyle.None;
ListViewBosses.HideSelection = true;
ListViewBosses.Items.AddRange(new ListViewItem[] { listViewItem1, listViewItem2, listViewItem3, listViewItem4, listViewItem5, listViewItem6 });
ListViewBosses.LabelWrap = false;
ListViewBosses.Location = new Point(610, 12);
ListViewBosses.MultiSelect = false;
ListViewBosses.Name = "ListViewBosses";
ListViewBosses.Size = new Size(178, 426);
ListViewBosses.TabIndex = 0;
ListViewBosses.UseCompatibleStateImageBehavior = false;
ListViewBosses.View = View.Details;
ListViewBosses.SelectedIndexChanged += ListViewBosses_SelectedIndexChanged;
//
// columnHeader1
//
columnHeader1.Width = 150;
//
// LabelFindings
//
LabelFindings.AutoSize = true;
LabelFindings.Location = new Point(12, 38);
LabelFindings.Name = "LabelFindings";
LabelFindings.Size = new Size(37, 15);
LabelFindings.TabIndex = 1;
LabelFindings.Text = "Stuffs";
//
// PanelStats
//
PanelStats.Controls.Add(LabelStats);
PanelStats.Location = new Point(363, 12);
PanelStats.Name = "PanelStats";
PanelStats.Size = new Size(241, 153);
PanelStats.TabIndex = 2;
//
// LabelStats
//
LabelStats.AutoSize = true;
LabelStats.Location = new Point(3, 3);
LabelStats.Margin = new Padding(3);
LabelStats.Name = "LabelStats";
LabelStats.Size = new Size(32, 15);
LabelStats.TabIndex = 0;
LabelStats.Text = "Stats";
//
// TextBoxSeed
//
TextBoxSeed.Location = new Point(12, 12);
TextBoxSeed.Name = "TextBoxSeed";
TextBoxSeed.ReadOnly = true;
TextBoxSeed.Size = new Size(147, 23);
TextBoxSeed.TabIndex = 3;
//
// SeedFound
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(TextBoxSeed);
Controls.Add(PanelStats);
Controls.Add(LabelFindings);
Controls.Add(ListViewBosses);
FormBorderStyle = FormBorderStyle.FixedSingle;
MaximizeBox = false;
Name = "SeedFound";
ShowInTaskbar = false;
Text = "Found seed!";
FormClosing += SeedFound_FormClosing_1;
Load += SeedFound_Load;
SizeChanged += SeedFound_SizeChanged;
PanelStats.ResumeLayout(false);
PanelStats.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ListView ListViewBosses;
private Label LabelFindings;
private Panel PanelStats;
private Label LabelStats;
private ColumnHeader columnHeader1;
private TextBox TextBoxSeed;
}
}