Parent Directory
|
Revision Log
|
Patch
--- trunk/EmuXPortal/Form1.Designer.cs 2012/04/03 21:00:28 13 +++ trunk/EmuXPortal/Form1.Designer.cs 2012/04/04 01:32:37 17 @@ -28,22 +28,50 @@ /// </summary> private void InitializeComponent() { + this.platform_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.rom_flow = new System.Windows.Forms.FlowLayoutPanel(); this.SuspendLayout(); // + // platform_flow + // + this.platform_flow.Location = new System.Drawing.Point(85, 210); + this.platform_flow.Name = "platform_flow"; + this.platform_flow.Size = new System.Drawing.Size(230, 164); + this.platform_flow.TabIndex = 0; + this.platform_flow.Visible = false; + this.platform_flow.VisibleChanged += new System.EventHandler(this.platform_flow_VisibleChanged); + // + // rom_flow + // + this.rom_flow.Location = new System.Drawing.Point(386, 287); + this.rom_flow.Name = "rom_flow"; + this.rom_flow.Size = new System.Drawing.Size(230, 164); + this.rom_flow.TabIndex = 1; + this.rom_flow.Visible = false; + this.rom_flow.VisibleChanged += new System.EventHandler(this.rom_flow_VisibleChanged); + // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(284, 262); + this.BackColor = System.Drawing.Color.Black; + this.ClientSize = new System.Drawing.Size(1003, 738); + this.Controls.Add(this.rom_flow); + this.Controls.Add(this.platform_flow); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.KeyPreview = true; this.Name = "Form1"; this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); this.Shown += new System.EventHandler(this.Form1_Shown); this.ResumeLayout(false); } #endregion + + private System.Windows.Forms.FlowLayoutPanel platform_flow; + private System.Windows.Forms.FlowLayoutPanel rom_flow; } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |