FormPopup.designer.cs 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace HslCommunication.BasicFramework
  2. {
  3. partial class FormPopup
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label2 = new System.Windows.Forms.Label();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.SuspendLayout();
  31. //
  32. // label2
  33. //
  34. this.label2.BackColor = System.Drawing.Color.MistyRose;
  35. this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  36. this.label2.Location = new System.Drawing.Point(287, 4);
  37. this.label2.Name = "label2";
  38. this.label2.Size = new System.Drawing.Size(41, 21);
  39. this.label2.TabIndex = 1;
  40. this.label2.Text = "关闭";
  41. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  42. this.label2.Click += new System.EventHandler(this.label2_Click);
  43. this.label2.MouseEnter += new System.EventHandler(this.label2_MouseEnter);
  44. this.label2.MouseLeave += new System.EventHandler(this.label2_MouseLeave);
  45. //
  46. // label1
  47. //
  48. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.label1.ForeColor = System.Drawing.Color.DimGray;
  50. this.label1.Location = new System.Drawing.Point(12, 30);
  51. this.label1.Name = "label1";
  52. this.label1.Size = new System.Drawing.Size(309, 119);
  53. this.label1.TabIndex = 2;
  54. this.label1.Text = "这是一条测试消息";
  55. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  56. //
  57. // FormPopup
  58. //
  59. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  60. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61. this.ClientSize = new System.Drawing.Size(333, 163);
  62. this.Controls.Add(this.label1);
  63. this.Controls.Add(this.label2);
  64. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  65. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  66. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  67. this.MaximizeBox = false;
  68. this.MaximumSize = new System.Drawing.Size(333, 163);
  69. this.MinimizeBox = false;
  70. this.MinimumSize = new System.Drawing.Size(333, 163);
  71. this.Name = "FormPopup";
  72. this.ShowIcon = false;
  73. this.ShowInTaskbar = false;
  74. this.Text = "消息";
  75. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormPopup_Closing);
  76. this.Load += new System.EventHandler(this.FormPopup_Load);
  77. this.Paint += new System.Windows.Forms.PaintEventHandler(this.FormPopup_Paint);
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private System.Windows.Forms.Label label2;
  82. private System.Windows.Forms.Label label1;
  83. }
  84. }