103 lines
4.1 KiB
C#
103 lines
4.1 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class NameStateForm
|
|
{
|
|
/// <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.cancelButton = new System.Windows.Forms.Button();
|
|
this.saveButton = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.stateLabelTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancelButton.Location = new System.Drawing.Point(199, 51);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
|
this.cancelButton.TabIndex = 0;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
//
|
|
// saveButton
|
|
//
|
|
this.saveButton.Location = new System.Drawing.Point(118, 51);
|
|
this.saveButton.Name = "saveButton";
|
|
this.saveButton.Size = new System.Drawing.Size(75, 23);
|
|
this.saveButton.TabIndex = 1;
|
|
this.saveButton.Text = "Save";
|
|
this.saveButton.UseVisualStyleBackColor = true;
|
|
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(181, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Enter a short label for this save state:";
|
|
//
|
|
// stateLabelTextBox
|
|
//
|
|
this.stateLabelTextBox.Location = new System.Drawing.Point(15, 25);
|
|
this.stateLabelTextBox.MaxLength = 248;
|
|
this.stateLabelTextBox.Name = "stateLabelTextBox";
|
|
this.stateLabelTextBox.Size = new System.Drawing.Size(259, 20);
|
|
this.stateLabelTextBox.TabIndex = 3;
|
|
//
|
|
// NameStateForm
|
|
//
|
|
this.AcceptButton = this.saveButton;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.cancelButton;
|
|
this.ClientSize = new System.Drawing.Size(278, 81);
|
|
this.Controls.Add(this.stateLabelTextBox);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.saveButton);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "NameStateForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Label Save State";
|
|
this.Shown += new System.EventHandler(this.NameStateForm_Shown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.Button saveButton;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox stateLabelTextBox;
|
|
}
|
|
} |