namespace NETERPNoWin
|
{
|
partial class OA_MessageBox
|
{
|
/// <summary>
|
/// 必需的设计器变量。
|
/// </summary>
|
private System.ComponentModel.IContainer components = null;
|
|
/// <summary>
|
/// 清理所有正在使用的资源。
|
/// </summary>
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
protected override void Dispose(bool disposing)
|
{
|
if (disposing && (components != null))
|
{
|
components.Dispose();
|
}
|
base.Dispose(disposing);
|
}
|
|
#region Windows 窗体设计器生成的代码
|
|
/// <summary>
|
/// 设计器支持所需的方法 - 不要
|
/// 使用代码编辑器修改此方法的内容。
|
/// </summary>
|
private void InitializeComponent()
|
{
|
this.components = new System.ComponentModel.Container();
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OA_MessageBox));
|
this.label1 = new System.Windows.Forms.Label();
|
this.lblMessage = new System.Windows.Forms.Label();
|
this.lblClose = new System.Windows.Forms.Label();
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
this.SuspendLayout();
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
this.label1.ForeColor = System.Drawing.Color.IndianRed;
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(189, 14);
|
this.label1.TabIndex = 0;
|
this.label1.Text = "您有新的消息(点击查看明细)";
|
//
|
// lblMessage
|
//
|
this.lblMessage.ForeColor = System.Drawing.Color.RoyalBlue;
|
this.lblMessage.Location = new System.Drawing.Point(13, 41);
|
this.lblMessage.Name = "lblMessage";
|
this.lblMessage.Size = new System.Drawing.Size(252, 118);
|
this.lblMessage.TabIndex = 1;
|
this.lblMessage.Text = "待审核单据S001";
|
this.lblMessage.Click += new System.EventHandler(this.lblMessage_Click);
|
//
|
// lblClose
|
//
|
this.lblClose.AutoSize = true;
|
this.lblClose.ForeColor = System.Drawing.SystemColors.WindowFrame;
|
this.lblClose.Location = new System.Drawing.Point(219, 6);
|
this.lblClose.Name = "lblClose";
|
this.lblClose.Size = new System.Drawing.Size(53, 12);
|
this.lblClose.TabIndex = 2;
|
this.lblClose.Text = "下次提醒";
|
this.lblClose.Click += new System.EventHandler(this.lblClose_Click);
|
//
|
// timer1
|
//
|
this.timer1.Enabled = true;
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
//
|
// OA_MessageBox
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.BackColor = System.Drawing.Color.Lavender;
|
this.ClientSize = new System.Drawing.Size(277, 183);
|
this.Controls.Add(this.lblClose);
|
this.Controls.Add(this.lblMessage);
|
this.Controls.Add(this.label1);
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.MaximizeBox = false;
|
this.MinimizeBox = false;
|
this.Name = "OA_MessageBox";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
this.Text = "消息框";
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.Label lblMessage;
|
private System.Windows.Forms.Label lblClose;
|
private System.Windows.Forms.Timer timer1;
|
}
|
}
|