mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
97 lines
No EOL
3.7 KiB
C#
97 lines
No EOL
3.7 KiB
C#
namespace FSO.IDE.ResourceBrowser
|
|
{
|
|
partial class GenericTextInput
|
|
{
|
|
/// <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.TextInput = new System.Windows.Forms.TextBox();
|
|
this.OKButton = new System.Windows.Forms.Button();
|
|
this.CancelButton = new System.Windows.Forms.Button();
|
|
this.DescLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// TextInput
|
|
//
|
|
this.TextInput.Location = new System.Drawing.Point(12, 26);
|
|
this.TextInput.Name = "TextInput";
|
|
this.TextInput.Size = new System.Drawing.Size(259, 20);
|
|
this.TextInput.TabIndex = 0;
|
|
//
|
|
// OKButton
|
|
//
|
|
this.OKButton.Location = new System.Drawing.Point(196, 52);
|
|
this.OKButton.Name = "OKButton";
|
|
this.OKButton.Size = new System.Drawing.Size(75, 23);
|
|
this.OKButton.TabIndex = 1;
|
|
this.OKButton.Text = "OK";
|
|
this.OKButton.UseVisualStyleBackColor = true;
|
|
this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
|
|
//
|
|
// CancelButton
|
|
//
|
|
this.CancelButton.Location = new System.Drawing.Point(115, 52);
|
|
this.CancelButton.Name = "CancelButton";
|
|
this.CancelButton.Size = new System.Drawing.Size(75, 23);
|
|
this.CancelButton.TabIndex = 2;
|
|
this.CancelButton.Text = "Cancel";
|
|
this.CancelButton.UseVisualStyleBackColor = true;
|
|
this.CancelButton.Click += new System.EventHandler(this.CancelButton_Click);
|
|
//
|
|
// DescLabel
|
|
//
|
|
this.DescLabel.AutoSize = true;
|
|
this.DescLabel.Location = new System.Drawing.Point(9, 9);
|
|
this.DescLabel.Name = "DescLabel";
|
|
this.DescLabel.Size = new System.Drawing.Size(172, 13);
|
|
this.DescLabel.TabIndex = 3;
|
|
this.DescLabel.Text = "Enter a new name for this Attribute.";
|
|
//
|
|
// GenericTextInput
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(283, 87);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.DescLabel);
|
|
this.Controls.Add(this.CancelButton);
|
|
this.Controls.Add(this.OKButton);
|
|
this.Controls.Add(this.TextInput);
|
|
this.Name = "GenericTextInput";
|
|
this.Text = "Enter a name.";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox TextInput;
|
|
private System.Windows.Forms.Button OKButton;
|
|
private System.Windows.Forms.Button CancelButton;
|
|
private System.Windows.Forms.Label DescLabel;
|
|
}
|
|
} |