84 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Project.Dialog
 | |
| {
 | |
|     partial class fMsgWindow
 | |
|     {
 | |
|         /// <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.arLabel1 = new System.Windows.Forms.Label();
 | |
|             this.button1 = new System.Windows.Forms.Button();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // arLabel1
 | |
|             // 
 | |
|             this.arLabel1.BackColor = System.Drawing.Color.WhiteSmoke;
 | |
|             this.arLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.arLabel1.Location = new System.Drawing.Point(5, 5);
 | |
|             this.arLabel1.Name = "arLabel1";
 | |
|             this.arLabel1.Size = new System.Drawing.Size(827, 399);
 | |
|             this.arLabel1.TabIndex = 4;
 | |
|             this.arLabel1.Text = "label1";
 | |
|             this.arLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 | |
|             // 
 | |
|             // button1
 | |
|             // 
 | |
|             this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 | |
|             this.button1.Font = new System.Drawing.Font("Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
|             this.button1.Location = new System.Drawing.Point(720, 18);
 | |
|             this.button1.Name = "button1";
 | |
|             this.button1.Size = new System.Drawing.Size(97, 53);
 | |
|             this.button1.TabIndex = 5;
 | |
|             this.button1.Text = "Close";
 | |
|             this.button1.UseVisualStyleBackColor = true;
 | |
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | |
|             // 
 | |
|             // fMsgWindow
 | |
|             // 
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
 | |
|             this.BackColor = System.Drawing.Color.Blue;
 | |
|             this.ClientSize = new System.Drawing.Size(837, 409);
 | |
|             this.Controls.Add(this.button1);
 | |
|             this.Controls.Add(this.arLabel1);
 | |
|             this.Font = new System.Drawing.Font("Consolas", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
|             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
 | |
|             this.KeyPreview = true;
 | |
|             this.MaximizeBox = false;
 | |
|             this.Name = "fMsgWindow";
 | |
|             this.Padding = new System.Windows.Forms.Padding(5);
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "Message Window";
 | |
|             this.TopMost = true;
 | |
|             this.Load += new System.EventHandler(this.fMsg_Load);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.Button button1;
 | |
|         public System.Windows.Forms.Label arLabel1;
 | |
|     }
 | |
| } | 
