Overhauled UI (left side navigation bar, device information, search, background, text colors) for a cleaner and more modern-looking interface. Removed no longer used resources. Adjusted layout and visibility of certain panels and controls for a cleaner interface. TODO: - Finish the full UI overhaul. - Fix MainForm Designer so it doesn't override the changes.
98 lines
5.0 KiB
C#
98 lines
5.0 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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UsernameForm));
|
|
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.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "TextBoxColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
|
|
this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
|
|
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, 24);
|
|
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.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.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "BackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximumSize = new System.Drawing.Size(459, 139);
|
|
this.MinimumSize = new System.Drawing.Size(459, 139);
|
|
this.Name = "UsernameForm";
|
|
this.ShowIcon = false;
|
|
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;
|
|
}
|
|
}
|