cemu-DS4Windows/DS4Tool/ReadInputForm.Designer.cs
jays2kings df43fd0d74 Revised Custom Mapping
I kinda just felt like doing it :P wanted to test myself,
trying to make a cleaner UI
2014-03-27 21:50:40 -04:00

114 lines
5.1 KiB
C#

namespace ScpServer
{
partial class ReadInputForm
{
/// <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();
this.label1 = new System.Windows.Forms.Label();
this.timeLabel = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.timeOutTimer = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.SystemColors.Desktop;
this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.label1.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.ControlLight;
this.label1.Location = new System.Drawing.Point(20, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(90, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Waiting for input: ";
//
// timeLabel
//
this.timeLabel.AutoSize = true;
this.timeLabel.BackColor = System.Drawing.SystemColors.Desktop;
this.timeLabel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.timeLabel.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.timeLabel.ForeColor = System.Drawing.SystemColors.ControlLight;
this.timeLabel.Location = new System.Drawing.Point(111, 5);
this.timeLabel.Name = "timeLabel";
this.timeLabel.Size = new System.Drawing.Size(19, 13);
this.timeLabel.TabIndex = 1;
this.timeLabel.Text = "10";
this.timeLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.SystemColors.Desktop;
this.label3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.label3.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.SystemColors.ControlLight;
this.label3.Location = new System.Drawing.Point(131, 5);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(52, 13);
this.label3.TabIndex = 2;
this.label3.Text = "second(s)";
//
// timeOutTimer
//
this.timeOutTimer.Interval = 1000;
this.timeOutTimer.Tick += new System.EventHandler(this.timeOutTimer_Tick);
//
// ReadInputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Desktop;
this.ClientSize = new System.Drawing.Size(193, 31);
this.Controls.Add(this.label3);
this.Controls.Add(this.timeLabel);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ReadInputForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "ReadIing Input";
this.TransparencyKey = System.Drawing.SystemColors.Desktop;
this.Shown += new System.EventHandler(this.ReadInputForm_Shown);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ReadInputForm_KeyDown);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ReadInputForm_KeyUp);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label timeLabel;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Timer timeOutTimer;
}
}