namespace SA_LTT_UI.Viewer
|
{
|
partial class MessageBoxPad
|
{
|
/// <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.tb_Message = new System.Windows.Forms.TextBox();
|
this.btn_Close = new System.Windows.Forms.Button();
|
this.SuspendLayout();
|
//
|
// tb_Message
|
//
|
this.tb_Message.Font = new System.Drawing.Font("Gulim", 15F);
|
this.tb_Message.Location = new System.Drawing.Point(12, 12);
|
this.tb_Message.Multiline = true;
|
this.tb_Message.Name = "tb_Message";
|
this.tb_Message.ReadOnly = true;
|
this.tb_Message.Size = new System.Drawing.Size(588, 152);
|
this.tb_Message.TabIndex = 0;
|
this.tb_Message.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
//
|
// btn_Close
|
//
|
this.btn_Close.Location = new System.Drawing.Point(198, 192);
|
this.btn_Close.Name = "btn_Close";
|
this.btn_Close.Size = new System.Drawing.Size(187, 41);
|
this.btn_Close.TabIndex = 1;
|
this.btn_Close.Text = "Close";
|
this.btn_Close.UseVisualStyleBackColor = true;
|
this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
|
//
|
// MessageBoxPad
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(612, 245);
|
this.Controls.Add(this.btn_Close);
|
this.Controls.Add(this.tb_Message);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
this.Name = "MessageBoxPad";
|
this.Text = "Message";
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.TextBox tb_Message;
|
private System.Windows.Forms.Button btn_Close;
|
}
|
}
|