source: other-projects/fft-ddr/summer-2014/trunk/FFDDR/Form1.Designer.cs@ 29750

Last change on this file since 29750 was 29750, checked in by cct9, 9 years ago

Reworking of pictureBox Paint event so it is using double-buffering correctly without background-erase issue

  • Property svn:executable set to *
File size: 6.4 KB
Line 
1namespace FFDDR
2{
3 partial class FFDDR
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FFDDR));
32 this.mainScreen1 = new System.Windows.Forms.PictureBox();
33 this.redLabel = new System.Windows.Forms.Label();
34 this.blueLabel = new System.Windows.Forms.Label();
35 this.greenLabel = new System.Windows.Forms.Label();
36 this.yellowLabel = new System.Windows.Forms.Label();
37 ((System.ComponentModel.ISupportInitialize)(this.mainScreen1)).BeginInit();
38 this.SuspendLayout();
39 //
40 // mainScreen1
41 //
42 this.mainScreen1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mainScreen1.BackgroundImage")));
43 this.mainScreen1.Location = new System.Drawing.Point(0, 0);
44 this.mainScreen1.Name = "mainScreen1";
45 this.mainScreen1.Size = new System.Drawing.Size(1187, 561);
46 this.mainScreen1.TabIndex = 6;
47 this.mainScreen1.TabStop = false;
48 //
49 // redLabel
50 //
51 this.redLabel.AutoSize = true;
52 this.redLabel.BackColor = System.Drawing.Color.Transparent;
53 this.redLabel.Font = new System.Drawing.Font("Moire", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
54 this.redLabel.ForeColor = System.Drawing.Color.Red;
55 this.redLabel.Location = new System.Drawing.Point(12, 37);
56 this.redLabel.Name = "redLabel";
57 this.redLabel.Size = new System.Drawing.Size(29, 29);
58 this.redLabel.TabIndex = 7;
59 this.redLabel.Text = "0";
60 //
61 // blueLabel
62 //
63 this.blueLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
64 this.blueLabel.AutoSize = true;
65 this.blueLabel.BackColor = System.Drawing.Color.Transparent;
66 this.blueLabel.Font = new System.Drawing.Font("Moire", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
67 this.blueLabel.ForeColor = System.Drawing.Color.Aqua;
68 this.blueLabel.Location = new System.Drawing.Point(1143, 37);
69 this.blueLabel.Name = "blueLabel";
70 this.blueLabel.Size = new System.Drawing.Size(29, 29);
71 this.blueLabel.TabIndex = 8;
72 this.blueLabel.Text = "0";
73 //
74 // greenLabel
75 //
76 this.greenLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
77 this.greenLabel.AutoSize = true;
78 this.greenLabel.BackColor = System.Drawing.Color.Transparent;
79 this.greenLabel.Font = new System.Drawing.Font("Moire", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
80 this.greenLabel.ForeColor = System.Drawing.Color.Lime;
81 this.greenLabel.Location = new System.Drawing.Point(1143, 489);
82 this.greenLabel.Name = "greenLabel";
83 this.greenLabel.Size = new System.Drawing.Size(29, 29);
84 this.greenLabel.TabIndex = 9;
85 this.greenLabel.Text = "0";
86 //
87 // yellowLabel
88 //
89 this.yellowLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
90 this.yellowLabel.AutoSize = true;
91 this.yellowLabel.BackColor = System.Drawing.Color.Transparent;
92 this.yellowLabel.Font = new System.Drawing.Font("Moire", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
93 this.yellowLabel.ForeColor = System.Drawing.Color.Yellow;
94 this.yellowLabel.Location = new System.Drawing.Point(12, 489);
95 this.yellowLabel.Name = "yellowLabel";
96 this.yellowLabel.Size = new System.Drawing.Size(29, 29);
97 this.yellowLabel.TabIndex = 10;
98 this.yellowLabel.Text = "0";
99 //
100 // FFDDR
101 //
102 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104 this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
105 this.ClientSize = new System.Drawing.Size(1184, 561);
106 this.Controls.Add(this.yellowLabel);
107 this.Controls.Add(this.greenLabel);
108 this.Controls.Add(this.blueLabel);
109 this.Controls.Add(this.redLabel);
110 this.Controls.Add(this.mainScreen1);
111 this.DoubleBuffered = true;
112 this.Name = "FFDDR";
113 this.Text = "FFDDR";
114 this.Load += new System.EventHandler(this.FFDDR_Load);
115 this.Resize += new System.EventHandler(this.FFDDR_Resize);
116 ((System.ComponentModel.ISupportInitialize)(this.mainScreen1)).EndInit();
117 this.ResumeLayout(false);
118 this.PerformLayout();
119
120 }
121
122 #endregion
123
124 private System.Windows.Forms.PictureBox mainScreen1;
125 private System.Windows.Forms.Label redLabel;
126 private System.Windows.Forms.Label blueLabel;
127 private System.Windows.Forms.Label greenLabel;
128 private System.Windows.Forms.Label yellowLabel;
129 }
130}
131
Note: See TracBrowser for help on using the repository browser.