Updated icon in forms I missed earlier; now reusing existing icon; dropping .exe size from 3,38 MB to 1,03 MB
95 lines
4.5 KiB
C#
95 lines
4.5 KiB
C#
namespace AndroidSideloader
|
|
{
|
|
partial class UsernameForm
|
|
{
|
|
/// <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.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.button1 = new AndroidSideloader.RoundButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.BackColor = global::AndroidSideloader.Properties.Settings.Default.TextBoxColor;
|
|
this.textBox1.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
|
|
this.textBox1.ForeColor = System.Drawing.Color.White;
|
|
this.textBox1.Location = new System.Drawing.Point(13, 13);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(418, 23);
|
|
this.textBox1.TabIndex = 0;
|
|
this.textBox1.Text = "Enter your username here";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Active1 = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
|
|
this.button1.Active2 = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
|
|
this.button1.BackColor = System.Drawing.Color.Transparent;
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.button1.Disabled1 = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(35)))), ((int)(((byte)(45)))));
|
|
this.button1.Disabled2 = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(28)))), ((int)(((byte)(35)))));
|
|
this.button1.DisabledStrokeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(55)))), ((int)(((byte)(65)))));
|
|
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F);
|
|
this.button1.ForeColor = System.Drawing.Color.White;
|
|
this.button1.Inactive1 = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
|
|
this.button1.Inactive2 = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
|
|
this.button1.Location = new System.Drawing.Point(13, 51);
|
|
this.button1.Name = "button1";
|
|
this.button1.Radius = 5;
|
|
this.button1.Size = new System.Drawing.Size(418, 34);
|
|
this.button1.Stroke = true;
|
|
this.button1.StrokeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
|
|
this.button1.TabIndex = 2;
|
|
this.button1.Text = "Create User.Json";
|
|
this.button1.Transparency = false;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// UsernameForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = global::AndroidSideloader.Properties.Settings.Default.BackColor;
|
|
this.ClientSize = new System.Drawing.Size(443, 100);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
this.MaximumSize = new System.Drawing.Size(459, 139);
|
|
this.MinimumSize = new System.Drawing.Size(459, 139);
|
|
this.Name = "UsernameForm";
|
|
this.Text = "USER.JSON";
|
|
this.Load += new System.EventHandler(this.usernameForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private RoundButton button1;
|
|
}
|
|
}
|