|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- namespace MaiMuAOI.SysUI.ProductAndStep
- {
- partial class WaitFrm
- {
- /// <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.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WaitFrm));
- this.lblTip = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.SuspendLayout();
- //
- // lblTip
- //
- this.lblTip.AutoSize = true;
- this.lblTip.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblTip.Location = new System.Drawing.Point(145, 44);
- this.lblTip.Name = "lblTip";
- this.lblTip.Size = new System.Drawing.Size(52, 27);
- this.lblTip.TabIndex = 0;
- this.lblTip.Text = "等待";
- //
- // label2
- //
- this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
- this.label2.Location = new System.Drawing.Point(12, 19);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(95, 77);
- this.label2.TabIndex = 1;
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // WaitFrm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(339, 119);
- this.ControlBox = false;
- this.Controls.Add(this.label2);
- this.Controls.Add(this.lblTip);
- this.Name = "WaitFrm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "等待处理...";
- this.Shown += new System.EventHandler(this.FrmWaitingBox_Shown);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label lblTip;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Timer timer1;
- }
- }
|