MatrixDevice.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. namespace IntelligentControlForsx.MyControls
  2. {
  3. partial class MatrixDevice
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lblDeviceId = new System.Windows.Forms.Label();
  29. this.lblWindSpeed = new System.Windows.Forms.Label();
  30. this.lblPower = new System.Windows.Forms.Label();
  31. this.pnlTop = new System.Windows.Forms.Panel();
  32. this.pnlBottom = new System.Windows.Forms.Panel();
  33. this.pnlTop.SuspendLayout();
  34. this.pnlBottom.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // lblDeviceId
  38. //
  39. this.lblDeviceId.AutoSize = true;
  40. this.lblDeviceId.Dock = System.Windows.Forms.DockStyle.Left;
  41. this.lblDeviceId.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  42. this.lblDeviceId.Location = new System.Drawing.Point(0, 0);
  43. this.lblDeviceId.Name = "lblDeviceId";
  44. this.lblDeviceId.Size = new System.Drawing.Size(43, 17);
  45. this.lblDeviceId.TabIndex = 0;
  46. this.lblDeviceId.Text = "MG01";
  47. //
  48. // lblWindSpeed
  49. //
  50. this.lblWindSpeed.AutoSize = true;
  51. this.lblWindSpeed.Dock = System.Windows.Forms.DockStyle.Right;
  52. this.lblWindSpeed.Font = new System.Drawing.Font("微软雅黑", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.lblWindSpeed.Location = new System.Drawing.Point(46, 0);
  54. this.lblWindSpeed.Name = "lblWindSpeed";
  55. this.lblWindSpeed.Size = new System.Drawing.Size(40, 14);
  56. this.lblWindSpeed.TabIndex = 1;
  57. this.lblWindSpeed.Text = "0.00m/s";
  58. //
  59. // lblPower
  60. //
  61. this.lblPower.AutoSize = true;
  62. this.lblPower.Dock = System.Windows.Forms.DockStyle.Right;
  63. this.lblPower.Font = new System.Drawing.Font("微软雅黑", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.lblPower.Location = new System.Drawing.Point(50, 0);
  65. this.lblPower.Name = "lblPower";
  66. this.lblPower.Size = new System.Drawing.Size(36, 14);
  67. this.lblPower.TabIndex = 2;
  68. this.lblPower.Text = "0.00kw";
  69. //
  70. // pnlTop
  71. //
  72. this.pnlTop.BackColor = System.Drawing.Color.Transparent;
  73. this.pnlTop.Controls.Add(this.lblDeviceId);
  74. this.pnlTop.Controls.Add(this.lblWindSpeed);
  75. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  76. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  77. this.pnlTop.Name = "pnlTop";
  78. this.pnlTop.Size = new System.Drawing.Size(86, 18);
  79. this.pnlTop.TabIndex = 3;
  80. //
  81. // pnlBottom
  82. //
  83. this.pnlBottom.BackColor = System.Drawing.Color.Transparent;
  84. this.pnlBottom.Controls.Add(this.lblPower);
  85. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  86. this.pnlBottom.Location = new System.Drawing.Point(0, 18);
  87. this.pnlBottom.Name = "pnlBottom";
  88. this.pnlBottom.Size = new System.Drawing.Size(86, 14);
  89. this.pnlBottom.TabIndex = 4;
  90. //
  91. // MatrixDevice
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(141)))), ((int)(((byte)(149)))));
  96. this.Controls.Add(this.pnlBottom);
  97. this.Controls.Add(this.pnlTop);
  98. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  99. this.ForeColor = System.Drawing.Color.White;
  100. this.Margin = new System.Windows.Forms.Padding(1);
  101. this.Name = "MatrixDevice";
  102. this.Size = new System.Drawing.Size(86, 32);
  103. this.pnlTop.ResumeLayout(false);
  104. this.pnlTop.PerformLayout();
  105. this.pnlBottom.ResumeLayout(false);
  106. this.pnlBottom.PerformLayout();
  107. this.ResumeLayout(false);
  108. }
  109. #endregion
  110. private System.Windows.Forms.Label lblDeviceId;
  111. private System.Windows.Forms.Label lblWindSpeed;
  112. private System.Windows.Forms.Label lblPower;
  113. private System.Windows.Forms.Panel pnlTop;
  114. private System.Windows.Forms.Panel pnlBottom;
  115. }
  116. }