SourceStepCountPre.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. namespace UAS_MES.CustomControl.TextBoxWithIcon
  2. {
  3. partial class SourceStepCountPre
  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.Count = new System.Windows.Forms.Label();
  30. this.CountRefresh = new System.Windows.Forms.Timer(this.components);
  31. this.SuspendLayout();
  32. //
  33. // Count
  34. //
  35. this.Count.AutoSize = true;
  36. this.Count.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.Count.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  38. this.Count.Location = new System.Drawing.Point(0, 0);
  39. this.Count.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  40. this.Count.Name = "Count";
  41. this.Count.Size = new System.Drawing.Size(0, 41);
  42. this.Count.TabIndex = 0;
  43. //
  44. // CountRefresh
  45. //
  46. this.CountRefresh.Tick += new System.EventHandler(this.CountRefresh_Tick);
  47. //
  48. // SourceStepCountPre
  49. //
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  52. this.Controls.Add(this.Count);
  53. this.Margin = new System.Windows.Forms.Padding(4);
  54. this.Name = "SourceStepCountPre";
  55. this.Size = new System.Drawing.Size(176, 44);
  56. this.Load += new System.EventHandler(this.SourceStepCount_Load);
  57. this.ResumeLayout(false);
  58. this.PerformLayout();
  59. }
  60. #endregion
  61. private System.Windows.Forms.Label Count;
  62. private System.Windows.Forms.Timer CountRefresh;
  63. }
  64. }