aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs
diff options
context:
space:
mode:
authorRichie Moch <[email protected]>2018-12-23 19:15:07 -0600
committerRichie Moch <[email protected]>2018-12-23 19:15:07 -0600
commitbca879db94bc6395dbfa77628747080311fdb226 (patch)
tree24103811cd3df0957f2450bbe579e05d7dc7c4e6 /ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs
parentd94c79dbf5183230e5fd3342848408f776de60ea (diff)
downloadshiftos-rewind-bca879db94bc6395dbfa77628747080311fdb226.tar.gz
shiftos-rewind-bca879db94bc6395dbfa77628747080311fdb226.tar.bz2
shiftos-rewind-bca879db94bc6395dbfa77628747080311fdb226.zip
started work on the pong, implemented "ShiftToolStrip". (note: pong is very buggy)
Diffstat (limited to 'ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs')
-rw-r--r--ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs150
1 files changed, 0 insertions, 150 deletions
diff --git a/ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs b/ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs
deleted file mode 100644
index 5e617cb..0000000
--- a/ShiftOS.Main/MainGame/Apps/ShifterStuff/SelectColor.Designer.cs
+++ /dev/null
@@ -1,150 +0,0 @@
-namespace ShiftOS.Main.ShiftOS.Apps.ShifterStuff
-{
- 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.btnSetColor = new System.Windows.Forms.Button();
- this.redUpDown = new System.Windows.Forms.NumericUpDown();
- this.greenUpDown = new System.Windows.Forms.NumericUpDown();
- this.blueUpDown = new System.Windows.Forms.NumericUpDown();
- ((System.ComponentModel.ISupportInitialize)(this.redUpDown)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.greenUpDown)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.blueUpDown)).BeginInit();
- 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:";
- //
- // 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);
- //
- // redUpDown
- //
- this.redUpDown.Location = new System.Drawing.Point(82, 32);
- this.redUpDown.Maximum = new decimal(new int[] {
- 255,
- 0,
- 0,
- 0});
- this.redUpDown.Name = "redUpDown";
- this.redUpDown.Size = new System.Drawing.Size(120, 20);
- this.redUpDown.TabIndex = 7;
- //
- // greenUpDown
- //
- this.greenUpDown.Location = new System.Drawing.Point(82, 60);
- this.greenUpDown.Maximum = new decimal(new int[] {
- 255,
- 0,
- 0,
- 0});
- this.greenUpDown.Name = "greenUpDown";
- this.greenUpDown.Size = new System.Drawing.Size(120, 20);
- this.greenUpDown.TabIndex = 8;
- //
- // blueUpDown
- //
- this.blueUpDown.Location = new System.Drawing.Point(82, 90);
- this.blueUpDown.Maximum = new decimal(new int[] {
- 255,
- 0,
- 0,
- 0});
- this.blueUpDown.Name = "blueUpDown";
- this.blueUpDown.Size = new System.Drawing.Size(120, 20);
- this.blueUpDown.TabIndex = 9;
- //
- // SelectColor
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.blueUpDown);
- this.Controls.Add(this.greenUpDown);
- this.Controls.Add(this.redUpDown);
- this.Controls.Add(this.btnSetColor);
- 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.Load += new System.EventHandler(this.SelectColor_Load);
- ((System.ComponentModel.ISupportInitialize)(this.redUpDown)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.greenUpDown)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.blueUpDown)).EndInit();
- 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.Button btnSetColor;
- private System.Windows.Forms.NumericUpDown redUpDown;
- private System.Windows.Forms.NumericUpDown greenUpDown;
- private System.Windows.Forms.NumericUpDown blueUpDown;
- }
-}