72 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace Volian.Base.Library
 | |
| {
 | |
| 	partial class FrmPopupStatusMessage
 | |
| 	{
 | |
| 		/// <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.popMsg = new System.Windows.Forms.Label();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// popMsg
 | |
| 			// 
 | |
| 			this.popMsg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.popMsg.Location = new System.Drawing.Point(13, 13);
 | |
| 			this.popMsg.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
 | |
| 			this.popMsg.Name = "popMsg";
 | |
| 			this.popMsg.Size = new System.Drawing.Size(536, 16);
 | |
| 			this.popMsg.TabIndex = 0;
 | |
| 			this.popMsg.Text = "label1";
 | |
| 			this.popMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 | |
| 			this.popMsg.UseWaitCursor = true;
 | |
| 			// 
 | |
| 			// FrmPopupStatusMessage
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
 | |
| 			this.ClientSize = new System.Drawing.Size(562, 38);
 | |
| 			this.ControlBox = false;
 | |
| 			this.Controls.Add(this.popMsg);
 | |
| 			this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
 | |
| 			this.MaximizeBox = false;
 | |
| 			this.MinimizeBox = false;
 | |
| 			this.Name = "FrmPopupStatusMessage";
 | |
| 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
| 			this.Text = "FrmPopupStatusMessage";
 | |
| 			this.TopMost = true;
 | |
| 			this.UseWaitCursor = true;
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.Label popMsg;
 | |
| 	}
 | |
| } |