132 lines
5.5 KiB
C#
132 lines
5.5 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class ArchiveChooser
|
|
{
|
|
/// <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.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.lvMembers = new System.Windows.Forms.ListView();
|
|
this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// flowLayoutPanel1
|
|
//
|
|
this.flowLayoutPanel1.AutoSize = true;
|
|
this.flowLayoutPanel1.Controls.Add(this.btnCancel);
|
|
this.flowLayoutPanel1.Controls.Add(this.btnOK);
|
|
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
|
|
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 276);
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
this.flowLayoutPanel1.Size = new System.Drawing.Size(472, 29);
|
|
this.flowLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(394, 3);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(313, 3);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 0;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// lvMembers
|
|
//
|
|
this.lvMembers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colName,
|
|
this.colSize});
|
|
this.lvMembers.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lvMembers.FullRowSelect = true;
|
|
this.lvMembers.GridLines = true;
|
|
this.lvMembers.Location = new System.Drawing.Point(0, 0);
|
|
this.lvMembers.Name = "lvMembers";
|
|
this.lvMembers.Size = new System.Drawing.Size(472, 276);
|
|
this.lvMembers.TabIndex = 0;
|
|
this.lvMembers.UseCompatibleStateImageBehavior = false;
|
|
this.lvMembers.View = System.Windows.Forms.View.Details;
|
|
this.lvMembers.ItemActivate += new System.EventHandler(this.lvMembers_ItemActivate);
|
|
//
|
|
// colName
|
|
//
|
|
this.colName.DisplayIndex = 1;
|
|
this.colName.Text = "Name";
|
|
this.colName.Width = 409;
|
|
//
|
|
// colSize
|
|
//
|
|
this.colSize.DisplayIndex = 0;
|
|
this.colSize.Text = "Size";
|
|
//
|
|
// ArchiveChooser
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(472, 305);
|
|
this.Controls.Add(this.lvMembers);
|
|
this.Controls.Add(this.flowLayoutPanel1);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(112, 138);
|
|
this.Name = "ArchiveChooser";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Choose File From Archive";
|
|
this.Load += new System.EventHandler(this.ArchiveChooser_Load);
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.ListView lvMembers;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.ColumnHeader colSize;
|
|
private System.Windows.Forms.ColumnHeader colName;
|
|
}
|
|
} |