104 lines
4.8 KiB
C#
104 lines
4.8 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class MobileDetailView
|
|
{
|
|
/// <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 Windows Form 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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.bmpView1 = new BizHawk.Client.EmuHawk.BmpView();
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.ColumnCount = 1;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.Controls.Add(this.bmpView1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.listView1, 0, 1);
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 2;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 140F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(142, 332);
|
|
this.tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// bmpView1
|
|
//
|
|
this.bmpView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.bmpView1.Location = new System.Drawing.Point(3, 3);
|
|
this.bmpView1.Name = "bmpView1";
|
|
this.bmpView1.Size = new System.Drawing.Size(136, 134);
|
|
this.bmpView1.TabIndex = 0;
|
|
this.bmpView1.Text = "bmpView1";
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1,
|
|
this.columnHeader2});
|
|
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listView1.GridLines = true;
|
|
this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
|
this.listView1.Location = new System.Drawing.Point(3, 143);
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.Size = new System.Drawing.Size(136, 186);
|
|
this.listView1.TabIndex = 1;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
this.listView1.SizeChanged += new System.EventHandler(this.listView1_SizeChanged);
|
|
//
|
|
// MobileDetailView
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(142, 332);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "MobileDetailView";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "MobileDetailView";
|
|
this.SizeChanged += new System.EventHandler(this.MobileDetailView_SizeChanged);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private BmpView bmpView1;
|
|
private System.Windows.Forms.ListView listView1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
}
|
|
} |