aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-09-27 17:12:44 -0500
committerFloppyDiskDrive <[email protected]>2017-09-27 17:12:44 -0500
commit92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4 (patch)
tree5ec80c52c6b500c543ee265a9936f75e42c5e569 /ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs
parent9c24aebd302435b9993dd495cea5898cd5872867 (diff)
downloadshiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.tar.gz
shiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.tar.bz2
shiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.zip
Revert "Began work on a crappy Skinning Engine; Shifter is removed until completed."
This reverts commit 9c24aebd302435b9993dd495cea5898cd5872867.
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs128
1 files changed, 128 insertions, 0 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs
new file mode 100644
index 0000000..e305651
--- /dev/null
+++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.Designer.cs
@@ -0,0 +1,128 @@
+namespace ShiftOS.Main.ShiftOS.Apps
+{
+ partial class SelectColor
+ {
+ /// <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 Component 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.label1 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.btnSetColor = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(21, 34);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(39, 13);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "Red:";
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(21, 62);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(55, 13);
+ this.label2.TabIndex = 1;
+ this.label2.Text = "Green:";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(21, 92);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(47, 13);
+ this.label3.TabIndex = 2;
+ this.label3.Text = "Blue:";
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(75, 27);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(206, 20);
+ this.textBox1.TabIndex = 3;
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(75, 58);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(206, 20);
+ this.textBox2.TabIndex = 4;
+ //
+ // textBox3
+ //
+ this.textBox3.Location = new System.Drawing.Point(75, 88);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(206, 20);
+ this.textBox3.TabIndex = 5;
+ //
+ // btnSetColor
+ //
+ this.btnSetColor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnSetColor.Location = new System.Drawing.Point(75, 121);
+ this.btnSetColor.Name = "btnSetColor";
+ this.btnSetColor.Size = new System.Drawing.Size(93, 23);
+ this.btnSetColor.TabIndex = 6;
+ this.btnSetColor.Text = "Set Color";
+ this.btnSetColor.UseVisualStyleBackColor = true;
+ this.btnSetColor.Click += new System.EventHandler(this.btnSetColor_Click);
+ //
+ // SelectColor
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.btnSetColor);
+ this.Controls.Add(this.textBox3);
+ this.Controls.Add(this.textBox2);
+ this.Controls.Add(this.textBox1);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.label1);
+ this.Font = new System.Drawing.Font("Lucida Console", 9.25F);
+ this.Name = "SelectColor";
+ this.Size = new System.Drawing.Size(317, 158);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.TextBox textBox2;
+ private System.Windows.Forms.TextBox textBox3;
+ private System.Windows.Forms.Button btnSetColor;
+ }
+}