MatrixDevice2.Designer.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. namespace IntelligentControlForsx.MyControls
  2. {
  3. partial class MatrixDevice2
  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.components = new System.ComponentModel.Container();
  29. this.lblDeviceId = new System.Windows.Forms.Label();
  30. this.lblWindSpeed = new System.Windows.Forms.Label();
  31. this.lblPower = new System.Windows.Forms.Label();
  32. this.pnlTop = new System.Windows.Forms.Panel();
  33. this.pnlBottom = new System.Windows.Forms.Panel();
  34. this.btnTip = new System.Windows.Forms.Button();
  35. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  36. this.pnlTop.SuspendLayout();
  37. this.pnlBottom.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // lblDeviceId
  41. //
  42. this.lblDeviceId.AllowDrop = true;
  43. this.lblDeviceId.AutoSize = true;
  44. this.lblDeviceId.Font = new System.Drawing.Font("微软雅黑", 9F);
  45. this.lblDeviceId.Location = new System.Drawing.Point(-3, -2);
  46. this.lblDeviceId.Name = "lblDeviceId";
  47. this.lblDeviceId.Size = new System.Drawing.Size(43, 17);
  48. this.lblDeviceId.TabIndex = 0;
  49. this.lblDeviceId.Text = "MG01";
  50. this.lblDeviceId.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblDeviceId_MouseDown);
  51. this.lblDeviceId.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblDeviceId_MouseMove);
  52. //
  53. // lblWindSpeed
  54. //
  55. this.lblWindSpeed.AutoSize = true;
  56. this.lblWindSpeed.Dock = System.Windows.Forms.DockStyle.Right;
  57. this.lblWindSpeed.Font = new System.Drawing.Font("微软雅黑", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  58. this.lblWindSpeed.Location = new System.Drawing.Point(48, 0);
  59. this.lblWindSpeed.Name = "lblWindSpeed";
  60. this.lblWindSpeed.Size = new System.Drawing.Size(52, 16);
  61. this.lblWindSpeed.TabIndex = 1;
  62. this.lblWindSpeed.Text = "00.00m/s";
  63. //
  64. // lblPower
  65. //
  66. this.lblPower.AutoSize = true;
  67. this.lblPower.Dock = System.Windows.Forms.DockStyle.Right;
  68. this.lblPower.Font = new System.Drawing.Font("微软雅黑", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  69. this.lblPower.Location = new System.Drawing.Point(59, 0);
  70. this.lblPower.Name = "lblPower";
  71. this.lblPower.Size = new System.Drawing.Size(41, 16);
  72. this.lblPower.TabIndex = 2;
  73. this.lblPower.Text = "0.00kw";
  74. //
  75. // pnlTop
  76. //
  77. this.pnlTop.BackColor = System.Drawing.Color.Transparent;
  78. this.pnlTop.Controls.Add(this.lblDeviceId);
  79. this.pnlTop.Controls.Add(this.lblWindSpeed);
  80. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  81. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  82. this.pnlTop.Name = "pnlTop";
  83. this.pnlTop.Size = new System.Drawing.Size(100, 20);
  84. this.pnlTop.TabIndex = 3;
  85. //
  86. // pnlBottom
  87. //
  88. this.pnlBottom.BackColor = System.Drawing.Color.Transparent;
  89. this.pnlBottom.Controls.Add(this.btnTip);
  90. this.pnlBottom.Controls.Add(this.lblPower);
  91. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  92. this.pnlBottom.Location = new System.Drawing.Point(0, 22);
  93. this.pnlBottom.Name = "pnlBottom";
  94. this.pnlBottom.Size = new System.Drawing.Size(100, 18);
  95. this.pnlBottom.TabIndex = 4;
  96. //
  97. // btnTip
  98. //
  99. this.btnTip.BackColor = System.Drawing.Color.Transparent;
  100. this.btnTip.FlatAppearance.BorderSize = 0;
  101. this.btnTip.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  102. this.btnTip.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  103. this.btnTip.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  104. this.btnTip.ForeColor = System.Drawing.Color.Transparent;
  105. this.btnTip.Image = global::IntelligentControlForsx.Properties.Resources.time;
  106. this.btnTip.Location = new System.Drawing.Point(8, 0);
  107. this.btnTip.Name = "btnTip";
  108. this.btnTip.Size = new System.Drawing.Size(16, 16);
  109. this.btnTip.TabIndex = 4;
  110. this.btnTip.UseVisualStyleBackColor = false;
  111. //
  112. // toolTip1
  113. //
  114. this.toolTip1.AutoPopDelay = 20000;
  115. this.toolTip1.InitialDelay = 500;
  116. this.toolTip1.ReshowDelay = 1000;
  117. this.toolTip1.ShowAlways = true;
  118. this.toolTip1.Popup += new System.Windows.Forms.PopupEventHandler(this.toolTip1_Popup);
  119. //
  120. // MatrixDevice2
  121. //
  122. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  123. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  124. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(141)))), ((int)(((byte)(149)))));
  125. this.Controls.Add(this.pnlBottom);
  126. this.Controls.Add(this.pnlTop);
  127. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  128. this.ForeColor = System.Drawing.Color.White;
  129. this.Margin = new System.Windows.Forms.Padding(1);
  130. this.Name = "MatrixDevice2";
  131. this.Size = new System.Drawing.Size(100, 40);
  132. this.pnlTop.ResumeLayout(false);
  133. this.pnlTop.PerformLayout();
  134. this.pnlBottom.ResumeLayout(false);
  135. this.pnlBottom.PerformLayout();
  136. this.ResumeLayout(false);
  137. }
  138. #endregion
  139. private System.Windows.Forms.Label lblDeviceId;
  140. private System.Windows.Forms.Label lblWindSpeed;
  141. private System.Windows.Forms.Label lblPower;
  142. private System.Windows.Forms.Panel pnlTop;
  143. private System.Windows.Forms.Panel pnlBottom;
  144. private System.Windows.Forms.Button btnTip;
  145. private System.Windows.Forms.ToolTip toolTip1;
  146. }
  147. }