namespace Stone.Common.WinModule { partial class frmMessagePop { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.btnOK = new System.Windows.Forms.Button(); this.lblMsg = new System.Windows.Forms.Label(); this.lblTimer = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // btnOK // this.btnOK.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnOK.Location = new System.Drawing.Point(134, 173); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(144, 53); this.btnOK.TabIndex = 0; this.btnOK.Text = "确定"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // lblMsg // this.lblMsg.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.lblMsg.ForeColor = System.Drawing.Color.Red; this.lblMsg.Location = new System.Drawing.Point(13, 13); this.lblMsg.Name = "lblMsg"; this.lblMsg.Size = new System.Drawing.Size(400, 143); this.lblMsg.TabIndex = 1; // // lblTimer // this.lblTimer.AutoSize = true; this.lblTimer.Location = new System.Drawing.Point(284, 214); this.lblTimer.Name = "lblTimer"; this.lblTimer.Size = new System.Drawing.Size(0, 12); this.lblTimer.TabIndex = 2; // // timer1 // this.timer1.Enabled = true; this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // frmMessagePop // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(425, 238); this.Controls.Add(this.lblTimer); this.Controls.Add(this.lblMsg); this.Controls.Add(this.btnOK); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "frmMessagePop"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "提示"; this.TopMost = true; this.Load += new System.EventHandler(this.frmMessagePop_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Label lblTimer; private System.Windows.Forms.Timer timer1; public System.Windows.Forms.Label lblMsg; } }