-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
136 lines (131 loc) · 5.93 KB
/
Copy pathMainForm.Designer.cs
File metadata and controls
136 lines (131 loc) · 5.93 KB
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
namespace AK_Tools
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabIniEditor = new System.Windows.Forms.TabPage();
this.tabDropRateChanger = new System.Windows.Forms.TabPage();
this.tabFortuneBag = new System.Windows.Forms.TabPage();
this.tabAdmin = new System.Windows.Forms.TabPage();
this.tabGmCommands = new System.Windows.Forms.TabPage();
this.tabInfo = new System.Windows.Forms.TabPage();
this.tabControl1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabIniEditor);
this.tabControl1.Controls.Add(this.tabDropRateChanger);
this.tabControl1.Controls.Add(this.tabFortuneBag);
this.tabControl1.Controls.Add(this.tabAdmin);
this.tabControl1.Controls.Add(this.tabGmCommands);
this.tabControl1.Controls.Add(this.tabInfo);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(1008, 681);
this.tabControl1.TabIndex = 0;
//
// tabIniEditor
//
this.tabIniEditor.Location = new System.Drawing.Point(4, 24);
this.tabIniEditor.Name = "tabIniEditor";
this.tabIniEditor.Padding = new System.Windows.Forms.Padding(3);
this.tabIniEditor.Size = new System.Drawing.Size(1000, 653);
this.tabIniEditor.TabIndex = 0;
this.tabIniEditor.Text = "INI Editor";
this.tabIniEditor.UseVisualStyleBackColor = true;
//
// tabDropRateChanger
//
this.tabDropRateChanger.Location = new System.Drawing.Point(4, 24);
this.tabDropRateChanger.Name = "tabDropRateChanger";
this.tabDropRateChanger.Padding = new System.Windows.Forms.Padding(3);
this.tabDropRateChanger.Size = new System.Drawing.Size(1000, 653);
this.tabDropRateChanger.TabIndex = 1;
this.tabDropRateChanger.Text = "Rate Changer";
this.tabDropRateChanger.UseVisualStyleBackColor = true;
//
// tabFortuneBag
//
this.tabFortuneBag.Location = new System.Drawing.Point(4, 24);
this.tabFortuneBag.Name = "tabFortuneBag";
this.tabFortuneBag.Padding = new System.Windows.Forms.Padding(3);
this.tabFortuneBag.Size = new System.Drawing.Size(1000, 653);
this.tabFortuneBag.TabIndex = 2;
this.tabFortuneBag.Text = "Fortune Bag";
this.tabFortuneBag.UseVisualStyleBackColor = true;
//
// tabAdmin
//
this.tabAdmin.Location = new System.Drawing.Point(4, 24);
this.tabAdmin.Name = "tabAdmin";
this.tabAdmin.Padding = new System.Windows.Forms.Padding(3);
this.tabAdmin.Size = new System.Drawing.Size(1000, 653);
this.tabAdmin.TabIndex = 3;
this.tabAdmin.Text = "Admin";
this.tabAdmin.UseVisualStyleBackColor = true;
//
// tabGmCommands
//
this.tabGmCommands.Location = new System.Drawing.Point(4, 24);
this.tabGmCommands.Name = "tabGmCommands";
this.tabGmCommands.Padding = new System.Windows.Forms.Padding(3);
this.tabGmCommands.Size = new System.Drawing.Size(1000, 653);
this.tabGmCommands.TabIndex = 4;
this.tabGmCommands.Text = "GM Commands";
this.tabGmCommands.UseVisualStyleBackColor = true;
//
// tabInfo
//
this.tabInfo.Location = new System.Drawing.Point(4, 24);
this.tabInfo.Name = "tabInfo";
this.tabInfo.Padding = new System.Windows.Forms.Padding(3);
this.tabInfo.Size = new System.Drawing.Size(1000, 653);
this.tabInfo.TabIndex = 5;
this.tabInfo.Text = "Info";
this.tabInfo.UseVisualStyleBackColor = true;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1008, 681);
this.Controls.Add(this.tabControl1);
this.MinimumSize = new System.Drawing.Size(640, 480);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "AK-Tools v1.1.0";
this.Load += new System.EventHandler(this.MainForm_Load);
this.tabControl1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabIniEditor;
private System.Windows.Forms.TabPage tabDropRateChanger;
private System.Windows.Forms.TabPage tabFortuneBag;
private System.Windows.Forms.TabPage tabAdmin;
private System.Windows.Forms.TabPage tabGmCommands;
private System.Windows.Forms.TabPage tabInfo;
}
}