forked from Fumo-Unlockers/Xbox-Achievement-Unlocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAchievementList.Designer.cs
196 lines (191 loc) · 10.1 KB
/
AchievementList.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
namespace Xbox_Achievement_Unlocker
{
partial class AchievementList
{
/// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.BTN_Unlock = new System.Windows.Forms.Button();
this.BTN_UnlockAll = new System.Windows.Forms.Button();
this.DGV_AchievementList = new System.Windows.Forms.DataGridView();
this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CL_Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CL_Stats = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CL_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Check_UnlockAll = new System.Windows.Forms.CheckBox();
this.BTN_ALRefresh = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.DGV_AchievementList)).BeginInit();
this.SuspendLayout();
//
// BTN_Unlock
//
this.BTN_Unlock.Location = new System.Drawing.Point(0, 395);
this.BTN_Unlock.Margin = new System.Windows.Forms.Padding(0);
this.BTN_Unlock.Name = "BTN_Unlock";
this.BTN_Unlock.Size = new System.Drawing.Size(105, 46);
this.BTN_Unlock.TabIndex = 6;
this.BTN_Unlock.Text = "Unlock Selected Achievements";
this.BTN_Unlock.UseVisualStyleBackColor = true;
this.BTN_Unlock.Click += new System.EventHandler(this.BTN_Unlock_Click);
//
// BTN_UnlockAll
//
this.BTN_UnlockAll.Enabled = false;
this.BTN_UnlockAll.Location = new System.Drawing.Point(105, 395);
this.BTN_UnlockAll.Margin = new System.Windows.Forms.Padding(0);
this.BTN_UnlockAll.Name = "BTN_UnlockAll";
this.BTN_UnlockAll.Size = new System.Drawing.Size(105, 46);
this.BTN_UnlockAll.TabIndex = 8;
this.BTN_UnlockAll.Text = "Unlock All Achievements";
this.BTN_UnlockAll.UseVisualStyleBackColor = true;
this.BTN_UnlockAll.Click += new System.EventHandler(this.BTN_UnlockAll_Click);
//
// DGV_AchievementList
//
this.DGV_AchievementList.AllowUserToAddRows = false;
this.DGV_AchievementList.AllowUserToDeleteRows = false;
this.DGV_AchievementList.AllowUserToResizeColumns = false;
this.DGV_AchievementList.AllowUserToResizeRows = false;
this.DGV_AchievementList.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.DGV_AchievementList.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.DGV_AchievementList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.DGV_AchievementList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewCheckBoxColumn1,
this.dataGridViewTextBoxColumn1,
this.CL_Description,
this.CL_Stats,
this.CL_ID});
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.DGV_AchievementList.DefaultCellStyle = dataGridViewCellStyle1;
this.DGV_AchievementList.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnF2;
this.DGV_AchievementList.Location = new System.Drawing.Point(-41, -3);
this.DGV_AchievementList.Name = "DGV_AchievementList";
this.DGV_AchievementList.RowTemplate.Height = 25;
this.DGV_AchievementList.RowTemplate.ReadOnly = true;
this.DGV_AchievementList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.DGV_AchievementList.ShowCellErrors = false;
this.DGV_AchievementList.ShowCellToolTips = false;
this.DGV_AchievementList.ShowEditingIcon = false;
this.DGV_AchievementList.ShowRowErrors = false;
this.DGV_AchievementList.Size = new System.Drawing.Size(898, 395);
this.DGV_AchievementList.TabIndex = 10;
this.DGV_AchievementList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
//
// dataGridViewCheckBoxColumn1
//
this.dataGridViewCheckBoxColumn1.FalseValue = "0";
this.dataGridViewCheckBoxColumn1.HeaderText = "Unlock";
this.dataGridViewCheckBoxColumn1.IndeterminateValue = "2";
this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
this.dataGridViewCheckBoxColumn1.TrueValue = "1";
this.dataGridViewCheckBoxColumn1.Width = 50;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "Name";
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.ReadOnly = true;
this.dataGridViewTextBoxColumn1.Width = 150;
//
// CL_Description
//
this.CL_Description.HeaderText = "Description";
this.CL_Description.Name = "CL_Description";
this.CL_Description.ReadOnly = true;
this.CL_Description.Width = 300;
//
// CL_Stats
//
this.CL_Stats.HeaderText = "Stats";
this.CL_Stats.Name = "CL_Stats";
this.CL_Stats.ReadOnly = true;
this.CL_Stats.Width = 300;
//
// CL_ID
//
this.CL_ID.HeaderText = "ID";
this.CL_ID.Name = "CL_ID";
this.CL_ID.ReadOnly = true;
this.CL_ID.Width = 40;
//
// Check_UnlockAll
//
this.Check_UnlockAll.AutoSize = true;
this.Check_UnlockAll.Location = new System.Drawing.Point(213, 410);
this.Check_UnlockAll.Name = "Check_UnlockAll";
this.Check_UnlockAll.Size = new System.Drawing.Size(113, 19);
this.Check_UnlockAll.TabIndex = 11;
this.Check_UnlockAll.Text = "Allow Unlock All";
this.Check_UnlockAll.UseVisualStyleBackColor = true;
this.Check_UnlockAll.CheckedChanged += new System.EventHandler(this.Check_UnlockAll_CheckedChanged);
//
// BTN_ALRefresh
//
this.BTN_ALRefresh.Location = new System.Drawing.Point(752, 395);
this.BTN_ALRefresh.Margin = new System.Windows.Forms.Padding(0);
this.BTN_ALRefresh.Name = "BTN_ALRefresh";
this.BTN_ALRefresh.Size = new System.Drawing.Size(105, 46);
this.BTN_ALRefresh.TabIndex = 12;
this.BTN_ALRefresh.Text = "Refresh";
this.BTN_ALRefresh.UseVisualStyleBackColor = true;
this.BTN_ALRefresh.Click += new System.EventHandler(this.BTN_ALRefresh_Click);
//
// AchievementList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.ClientSize = new System.Drawing.Size(856, 440);
this.Controls.Add(this.BTN_ALRefresh);
this.Controls.Add(this.Check_UnlockAll);
this.Controls.Add(this.DGV_AchievementList);
this.Controls.Add(this.BTN_UnlockAll);
this.Controls.Add(this.BTN_Unlock);
this.Name = "AchievementList";
this.Text = "Achievement List";
((System.ComponentModel.ISupportInitialize)(this.DGV_AchievementList)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button BTN_Unlock;
private System.Windows.Forms.Button BTN_UnlockAll;
private System.Windows.Forms.DataGridView DGV_AchievementList;
private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn CL_Description;
private System.Windows.Forms.DataGridViewTextBoxColumn CL_Stats;
private System.Windows.Forms.DataGridViewTextBoxColumn CL_ID;
private System.Windows.Forms.CheckBox Check_UnlockAll;
private System.Windows.Forms.Button BTN_ALRefresh;
}
}