frmHotDeliveryBeltWarn.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. namespace StorageMeterSystem
  2. {
  3. partial class frmHotDeliveryBeltWarn
  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.components = new System.ComponentModel.Container();
  29. this.timer1 = new System.Windows.Forms.Timer(this.components);
  30. this.lbPoint = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // timer1
  34. //
  35. this.timer1.Interval = 2000;
  36. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  37. //
  38. // lbPoint
  39. //
  40. this.lbPoint.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold);
  41. this.lbPoint.ForeColor = System.Drawing.Color.Red;
  42. this.lbPoint.Location = new System.Drawing.Point(12, 18);
  43. this.lbPoint.Name = "lbPoint";
  44. this.lbPoint.Size = new System.Drawing.Size(328, 107);
  45. this.lbPoint.TabIndex = 3;
  46. //
  47. // frmHotDeliveryBeltWarn
  48. //
  49. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  50. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  51. this.ClientSize = new System.Drawing.Size(352, 161);
  52. this.Controls.Add(this.lbPoint);
  53. this.Margin = new System.Windows.Forms.Padding(2);
  54. this.Name = "frmHotDeliveryBeltWarn";
  55. this.Text = "预警信息";
  56. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMsgInfo_FormClosing);
  57. this.Load += new System.EventHandler(this.frmMsgInfo_Load);
  58. this.ResumeLayout(false);
  59. }
  60. #endregion
  61. private System.Windows.Forms.Timer timer1;
  62. private System.Windows.Forms.Label lbPoint;
  63. }
  64. }