76 lines
2.6 KiB
C#
76 lines
2.6 KiB
C#
namespace Xylem.Common.Ui.CordonelPreadjustmentUi
|
|
{
|
|
partial class MsgBox
|
|
{
|
|
/// <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.txt = new System.Windows.Forms.TextBox();
|
|
this.btn = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// txt
|
|
//
|
|
this.txt.Location = new System.Drawing.Point(15, 10);
|
|
this.txt.Multiline = true;
|
|
this.txt.Name = "txt";
|
|
this.txt.Size = new System.Drawing.Size(236, 63);
|
|
this.txt.TabIndex = 0;
|
|
//
|
|
// btn
|
|
//
|
|
this.btn.Location = new System.Drawing.Point(15, 72);
|
|
this.btn.Name = "btn";
|
|
this.btn.Size = new System.Drawing.Size(236, 30);
|
|
this.btn.TabIndex = 1;
|
|
this.btn.Text = "button1";
|
|
this.btn.UseVisualStyleBackColor = true;
|
|
this.btn.Click += new System.EventHandler(this.btn_Click);
|
|
//
|
|
// MsgBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(259, 104);
|
|
this.Controls.Add(this.btn);
|
|
this.Controls.Add(this.txt);
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(275, 143);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(275, 143);
|
|
this.Name = "MsgBox";
|
|
this.Text = "MsgBox";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txt;
|
|
private System.Windows.Forms.Button btn;
|
|
}
|
|
} |