-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
110 lines (104 loc) · 5.07 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
namespace UmbraInjector
{
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);
}
#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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.Title = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.UpdateCheck = new System.Windows.Forms.Timer(this.components);
this.InjectButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// Title
//
this.Title.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Title.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F);
this.Title.ForeColor = System.Drawing.Color.Aqua;
this.Title.Location = new System.Drawing.Point(67, 0);
this.Title.Name = "Title";
this.Title.Size = new System.Drawing.Size(177, 57);
this.Title.TabIndex = 0;
this.Title.Text = "Umbra Unlocker";
this.Title.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.pictureBox1.Image = global::UmbraInjector.Properties.Resources.UmbraUnlockAll;
this.pictureBox1.Location = new System.Drawing.Point(-4, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(74, 57);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// UpdateCheck
//
this.UpdateCheck.Enabled = true;
this.UpdateCheck.Tick += new System.EventHandler(this.UpdateCheck_Tick);
//
// InjectButton
//
this.InjectButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.InjectButton.ForeColor = System.Drawing.Color.Aqua;
this.InjectButton.Location = new System.Drawing.Point(12, 76);
this.InjectButton.Name = "InjectButton";
this.InjectButton.Size = new System.Drawing.Size(220, 64);
this.InjectButton.TabIndex = 4;
this.InjectButton.Text = "Unlock All";
this.InjectButton.UseVisualStyleBackColor = false;
this.InjectButton.Click += new System.EventHandler(this.UnlockButton_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(244, 164);
this.Controls.Add(this.InjectButton);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.Title);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "Umbra Injector";
this.Load += new System.EventHandler(this.MainForm_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label Title;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Timer UpdateCheck;
private System.Windows.Forms.Button InjectButton;
}
}