| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- namespace HslCommunication.BasicFramework
- {
- partial class FormPopup
- {
- /// <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.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // label2
- //
- this.label2.BackColor = System.Drawing.Color.MistyRose;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(287, 4);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(41, 21);
- this.label2.TabIndex = 1;
- this.label2.Text = "关闭";
- this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.label2.Click += new System.EventHandler(this.label2_Click);
- this.label2.MouseEnter += new System.EventHandler(this.label2_MouseEnter);
- this.label2.MouseLeave += new System.EventHandler(this.label2_MouseLeave);
- //
- // label1
- //
- 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.DimGray;
- this.label1.Location = new System.Drawing.Point(12, 30);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(309, 119);
- this.label1.TabIndex = 2;
- this.label1.Text = "这是一条测试消息";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // FormPopup
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(333, 163);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.label2);
- this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.MaximizeBox = false;
- this.MaximumSize = new System.Drawing.Size(333, 163);
- this.MinimizeBox = false;
- this.MinimumSize = new System.Drawing.Size(333, 163);
- this.Name = "FormPopup";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.Text = "消息";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormPopup_Closing);
- this.Load += new System.EventHandler(this.FormPopup_Load);
- this.Paint += new System.Windows.Forms.PaintEventHandler(this.FormPopup_Paint);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- }
- }
|