84 lines
3.4 KiB
C#
84 lines
3.4 KiB
C#
![]() |
namespace BizHawk.MultiClient
|
|||
|
{
|
|||
|
partial class InputConfig
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputConfig));
|
|||
|
this.OK = new System.Windows.Forms.Button();
|
|||
|
this.Cancel = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// OK
|
|||
|
//
|
|||
|
this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.OK.Location = new System.Drawing.Point(320, 366);
|
|||
|
this.OK.Name = "OK";
|
|||
|
this.OK.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.OK.TabIndex = 0;
|
|||
|
this.OK.Text = "&Ok";
|
|||
|
this.OK.UseVisualStyleBackColor = true;
|
|||
|
this.OK.Click += new System.EventHandler(this.OK_Click);
|
|||
|
//
|
|||
|
// Cancel
|
|||
|
//
|
|||
|
this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.Cancel.Location = new System.Drawing.Point(401, 366);
|
|||
|
this.Cancel.Name = "Cancel";
|
|||
|
this.Cancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.Cancel.TabIndex = 1;
|
|||
|
this.Cancel.Text = "&Cancel";
|
|||
|
this.Cancel.UseVisualStyleBackColor = true;
|
|||
|
this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
|
|||
|
//
|
|||
|
// InputConfig
|
|||
|
//
|
|||
|
this.AcceptButton = this.OK;
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.CancelButton = this.Cancel;
|
|||
|
this.ClientSize = new System.Drawing.Size(488, 423);
|
|||
|
this.Controls.Add(this.Cancel);
|
|||
|
this.Controls.Add(this.OK);
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "InputConfig";
|
|||
|
this.ShowIcon = false;
|
|||
|
this.Text = "Configure Controllers";
|
|||
|
this.Load += new System.EventHandler(this.InputConfig_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button OK;
|
|||
|
private System.Windows.Forms.Button Cancel;
|
|||
|
}
|
|||
|
}
|