122 lines
4.8 KiB
C#
122 lines
4.8 KiB
C#
|
|
namespace VisualPascalABC
|
||
|
|
{
|
||
|
|
partial class ReplaceConfirmDialog
|
||
|
|
{
|
||
|
|
/// <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.lMessage = new System.Windows.Forms.Label();
|
||
|
|
this.btYes = new System.Windows.Forms.Button();
|
||
|
|
this.btNo = new System.Windows.Forms.Button();
|
||
|
|
this.btAll = new System.Windows.Forms.Button();
|
||
|
|
this.btCancel = new System.Windows.Forms.Button();
|
||
|
|
this.SuspendLayout();
|
||
|
|
//
|
||
|
|
// lMessage
|
||
|
|
//
|
||
|
|
this.lMessage.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
|
||
|
|
this.lMessage.AutoSize = true;
|
||
|
|
this.lMessage.Location = new System.Drawing.Point(13, 9);
|
||
|
|
this.lMessage.Name = "lMessage";
|
||
|
|
this.lMessage.Size = new System.Drawing.Size(35, 13);
|
||
|
|
this.lMessage.TabIndex = 0;
|
||
|
|
this.lMessage.Text = "TEXT";
|
||
|
|
//
|
||
|
|
// btYes
|
||
|
|
//
|
||
|
|
this.btYes.Location = new System.Drawing.Point(16, 43);
|
||
|
|
this.btYes.Name = "btYes";
|
||
|
|
this.btYes.Size = new System.Drawing.Size(75, 23);
|
||
|
|
this.btYes.TabIndex = 1;
|
||
|
|
this.btYes.Text = "!YES";
|
||
|
|
this.btYes.UseVisualStyleBackColor = true;
|
||
|
|
this.btYes.Click += new System.EventHandler(this.btYes_Click);
|
||
|
|
//
|
||
|
|
// btNo
|
||
|
|
//
|
||
|
|
this.btNo.Location = new System.Drawing.Point(97, 43);
|
||
|
|
this.btNo.Name = "btNo";
|
||
|
|
this.btNo.Size = new System.Drawing.Size(75, 23);
|
||
|
|
this.btNo.TabIndex = 2;
|
||
|
|
this.btNo.Text = "!NO";
|
||
|
|
this.btNo.UseVisualStyleBackColor = true;
|
||
|
|
this.btNo.Click += new System.EventHandler(this.btNo_Click);
|
||
|
|
//
|
||
|
|
// btAll
|
||
|
|
//
|
||
|
|
this.btAll.Location = new System.Drawing.Point(259, 43);
|
||
|
|
this.btAll.Name = "btAll";
|
||
|
|
this.btAll.Size = new System.Drawing.Size(75, 23);
|
||
|
|
this.btAll.TabIndex = 3;
|
||
|
|
this.btAll.Text = "!ALL";
|
||
|
|
this.btAll.UseVisualStyleBackColor = true;
|
||
|
|
this.btAll.Click += new System.EventHandler(this.btAll_Click);
|
||
|
|
//
|
||
|
|
// btCancel
|
||
|
|
//
|
||
|
|
this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||
|
|
this.btCancel.Location = new System.Drawing.Point(178, 43);
|
||
|
|
this.btCancel.Name = "btCancel";
|
||
|
|
this.btCancel.Size = new System.Drawing.Size(75, 23);
|
||
|
|
this.btCancel.TabIndex = 4;
|
||
|
|
this.btCancel.Text = "!CANCEL";
|
||
|
|
this.btCancel.UseVisualStyleBackColor = true;
|
||
|
|
this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
|
||
|
|
//
|
||
|
|
// ReplaceConfirmDialog
|
||
|
|
//
|
||
|
|
this.AcceptButton = this.btYes;
|
||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
|
this.CancelButton = this.btCancel;
|
||
|
|
this.ClientSize = new System.Drawing.Size(346, 78);
|
||
|
|
this.Controls.Add(this.btCancel);
|
||
|
|
this.Controls.Add(this.btAll);
|
||
|
|
this.Controls.Add(this.btNo);
|
||
|
|
this.Controls.Add(this.btYes);
|
||
|
|
this.Controls.Add(this.lMessage);
|
||
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||
|
|
this.MaximizeBox = false;
|
||
|
|
this.MinimizeBox = false;
|
||
|
|
this.Name = "ReplaceConfirmDialog";
|
||
|
|
this.ShowIcon = false;
|
||
|
|
this.ShowInTaskbar = false;
|
||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||
|
|
this.Text = "!CONFIRM";
|
||
|
|
this.ResumeLayout(false);
|
||
|
|
this.PerformLayout();
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
private System.Windows.Forms.Button btYes;
|
||
|
|
private System.Windows.Forms.Button btNo;
|
||
|
|
private System.Windows.Forms.Button btAll;
|
||
|
|
private System.Windows.Forms.Button btCancel;
|
||
|
|
public System.Windows.Forms.Label lMessage;
|
||
|
|
}
|
||
|
|
}
|