28 |
/// </summary> |
/// </summary> |
29 |
private void InitializeComponent() |
private void InitializeComponent() |
30 |
{ |
{ |
31 |
|
this.platform_flow = new System.Windows.Forms.FlowLayoutPanel(); |
32 |
|
this.rom_flow = new System.Windows.Forms.FlowLayoutPanel(); |
33 |
this.SuspendLayout(); |
this.SuspendLayout(); |
34 |
// |
// |
35 |
|
// platform_flow |
36 |
|
// |
37 |
|
this.platform_flow.Location = new System.Drawing.Point(85, 210); |
38 |
|
this.platform_flow.Name = "platform_flow"; |
39 |
|
this.platform_flow.Size = new System.Drawing.Size(230, 164); |
40 |
|
this.platform_flow.TabIndex = 0; |
41 |
|
this.platform_flow.Visible = false; |
42 |
|
this.platform_flow.VisibleChanged += new System.EventHandler(this.platform_flow_VisibleChanged); |
43 |
|
// |
44 |
|
// rom_flow |
45 |
|
// |
46 |
|
this.rom_flow.Location = new System.Drawing.Point(386, 287); |
47 |
|
this.rom_flow.Name = "rom_flow"; |
48 |
|
this.rom_flow.Size = new System.Drawing.Size(230, 164); |
49 |
|
this.rom_flow.TabIndex = 1; |
50 |
|
this.rom_flow.Visible = false; |
51 |
|
this.rom_flow.VisibleChanged += new System.EventHandler(this.rom_flow_VisibleChanged); |
52 |
|
// |
53 |
// Form1 |
// Form1 |
54 |
// |
// |
55 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
56 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
57 |
this.ClientSize = new System.Drawing.Size(284, 262); |
this.BackColor = System.Drawing.Color.Black; |
58 |
|
this.ClientSize = new System.Drawing.Size(1003, 738); |
59 |
|
this.Controls.Add(this.rom_flow); |
60 |
|
this.Controls.Add(this.platform_flow); |
61 |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; |
62 |
|
this.KeyPreview = true; |
63 |
this.Name = "Form1"; |
this.Name = "Form1"; |
64 |
this.Text = "Form1"; |
this.Text = "Form1"; |
65 |
|
this.Load += new System.EventHandler(this.Form1_Load); |
66 |
this.Shown += new System.EventHandler(this.Form1_Shown); |
this.Shown += new System.EventHandler(this.Form1_Shown); |
67 |
this.ResumeLayout(false); |
this.ResumeLayout(false); |
68 |
|
|
69 |
} |
} |
70 |
|
|
71 |
#endregion |
#endregion |
72 |
|
|
73 |
|
private System.Windows.Forms.FlowLayoutPanel platform_flow; |
74 |
|
private System.Windows.Forms.FlowLayoutPanel rom_flow; |
75 |
} |
} |
76 |
} |
} |
77 |
|
|