101 lines
3.2 KiB
C#
101 lines
3.2 KiB
C#
|
|
|
|||
|
|
namespace VisualPascalABC
|
|||
|
|
{
|
|||
|
|
partial class RenameForm
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Designer variable used to keep track of non-visual components.
|
|||
|
|
/// </summary>
|
|||
|
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Disposes resources used by the form.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
|
protected override void Dispose(bool disposing)
|
|||
|
|
{
|
|||
|
|
if (disposing) {
|
|||
|
|
if (components != null) {
|
|||
|
|
components.Dispose();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
base.Dispose(disposing);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// This method is required for Windows Forms designer support.
|
|||
|
|
/// Do not change the method contents inside the source code editor. The Forms designer might
|
|||
|
|
/// not be able to load this method if it was changed manually.
|
|||
|
|
/// </summary>
|
|||
|
|
private void InitializeComponent()
|
|||
|
|
{
|
|||
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|||
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|||
|
|
this.tbName = new System.Windows.Forms.TextBox();
|
|||
|
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// btnOk
|
|||
|
|
//
|
|||
|
|
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|||
|
|
this.btnOk.Location = new System.Drawing.Point(147, 68);
|
|||
|
|
this.btnOk.Name = "btnOk";
|
|||
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnOk.TabIndex = 0;
|
|||
|
|
this.btnOk.Text = "RF_OK";
|
|||
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// btnCancel
|
|||
|
|
//
|
|||
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
|
this.btnCancel.Location = new System.Drawing.Point(228, 68);
|
|||
|
|
this.btnCancel.Name = "btnCancel";
|
|||
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnCancel.TabIndex = 1;
|
|||
|
|
this.btnCancel.Text = "RF_CANCEL";
|
|||
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// tbName
|
|||
|
|
//
|
|||
|
|
this.tbName.Location = new System.Drawing.Point(12, 33);
|
|||
|
|
this.tbName.Name = "tbName";
|
|||
|
|
this.tbName.Size = new System.Drawing.Size(291, 20);
|
|||
|
|
this.tbName.TabIndex = 2;
|
|||
|
|
//
|
|||
|
|
// label1
|
|||
|
|
//
|
|||
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|||
|
|
this.label1.Name = "label1";
|
|||
|
|
this.label1.Size = new System.Drawing.Size(288, 23);
|
|||
|
|
this.label1.TabIndex = 3;
|
|||
|
|
this.label1.Text = "RF_ENTER_NEW_NAME";
|
|||
|
|
//
|
|||
|
|
// RenameForm
|
|||
|
|
//
|
|||
|
|
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(312, 99);
|
|||
|
|
this.Controls.Add(this.label1);
|
|||
|
|
this.Controls.Add(this.tbName);
|
|||
|
|
this.Controls.Add(this.btnCancel);
|
|||
|
|
this.Controls.Add(this.btnOk);
|
|||
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|||
|
|
this.HelpButton = true;
|
|||
|
|
this.MaximizeBox = false;
|
|||
|
|
this.MinimizeBox = false;
|
|||
|
|
this.Name = "RenameForm";
|
|||
|
|
this.ShowInTaskbar = false;
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "RF_RENAME";
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
}
|
|||
|
|
private System.Windows.Forms.Label label1;
|
|||
|
|
private System.Windows.Forms.TextBox tbName;
|
|||
|
|
private System.Windows.Forms.Button btnCancel;
|
|||
|
|
private System.Windows.Forms.Button btnOk;
|
|||
|
|
}
|
|||
|
|
}
|