110 lines
4.6 KiB
C#
110 lines
4.6 KiB
C#
namespace ryControls
|
||
{
|
||
partial class MsgUI
|
||
{
|
||
/// <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 组件设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.components = new System.ComponentModel.Container();
|
||
this.lblTitle = new System.Windows.Forms.Label();
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.lblText = new ryControls.LabelTx();
|
||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||
this.panel1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// lblTitle
|
||
//
|
||
this.lblTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.lblTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
|
||
this.lblTitle.ForeColor = System.Drawing.Color.White;
|
||
this.lblTitle.Location = new System.Drawing.Point(0, 0);
|
||
this.lblTitle.Name = "lblTitle";
|
||
this.lblTitle.Size = new System.Drawing.Size(218, 27);
|
||
this.lblTitle.TabIndex = 0;
|
||
this.lblTitle.Text = "消息标题";
|
||
this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||
this.lblTitle.Click += new System.EventHandler(this.LblTitle_Click);
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||
| System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.panel1.AutoScroll = true;
|
||
this.panel1.AutoSize = true;
|
||
this.panel1.Controls.Add(this.lblText);
|
||
this.panel1.Location = new System.Drawing.Point(2, 30);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(213, 48);
|
||
this.panel1.TabIndex = 2;
|
||
//
|
||
// lblText
|
||
//
|
||
this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.lblText.AutoEllipsis = true;
|
||
this.lblText.LineDistance = 5;
|
||
this.lblText.Location = new System.Drawing.Point(5, 6);
|
||
this.lblText.Name = "lblText";
|
||
this.lblText.Size = new System.Drawing.Size(205, 19);
|
||
this.lblText.TabIndex = 2;
|
||
this.lblText.Text = "消息内容";
|
||
//
|
||
// timer1
|
||
//
|
||
this.timer1.Interval = 1000;
|
||
this.timer1.Tick += new System.EventHandler(this.Timer1_Tick);
|
||
//
|
||
// MsgUI
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.AutoScroll = true;
|
||
this.AutoSize = true;
|
||
this.BackColor = System.Drawing.Color.White;
|
||
this.Controls.Add(this.panel1);
|
||
this.Controls.Add(this.lblTitle);
|
||
this.Name = "MsgUI";
|
||
this.Size = new System.Drawing.Size(218, 81);
|
||
this.Load += new System.EventHandler(this.MsgUI_Load);
|
||
this.Resize += new System.EventHandler(this.MsgUI_Resize);
|
||
this.panel1.ResumeLayout(false);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Label lblTitle;
|
||
private System.Windows.Forms.Panel panel1;
|
||
private ryControls.LabelTx lblText;
|
||
private System.Windows.Forms.Timer timer1;
|
||
}
|
||
}
|