ToolBaseForm.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace FormLib
  2. {
  3. partial class ToolBaseForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ToolBaseForm));
  29. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  30. this.tsbtRunTool = new System.Windows.Forms.ToolStripButton();
  31. this.statusStrip = new System.Windows.Forms.StatusStrip();
  32. this.lb_RunStatus = new System.Windows.Forms.ToolStripStatusLabel();
  33. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  34. this.lb_RunTime = new System.Windows.Forms.ToolStripStatusLabel();
  35. this.toolStrip1.SuspendLayout();
  36. this.statusStrip.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // toolStrip1
  40. //
  41. this.toolStrip1.ImageScalingSize = new System.Drawing.Size(25, 25);
  42. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  43. this.tsbtRunTool});
  44. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  45. this.toolStrip1.Name = "toolStrip1";
  46. this.toolStrip1.Size = new System.Drawing.Size(920, 32);
  47. this.toolStrip1.TabIndex = 3;
  48. this.toolStrip1.Text = "toolStrip1";
  49. //
  50. // tsbtRunTool
  51. //
  52. this.tsbtRunTool.Image = ((System.Drawing.Image)(resources.GetObject("tsbtRunTool.Image")));
  53. this.tsbtRunTool.ImageTransparentColor = System.Drawing.Color.Magenta;
  54. this.tsbtRunTool.Name = "tsbtRunTool";
  55. this.tsbtRunTool.Size = new System.Drawing.Size(85, 29);
  56. this.tsbtRunTool.Text = "运行工具";
  57. //
  58. // statusStrip
  59. //
  60. this.statusStrip.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  62. this.lb_RunStatus,
  63. this.toolStripStatusLabel1,
  64. this.lb_RunTime});
  65. this.statusStrip.Location = new System.Drawing.Point(0, 563);
  66. this.statusStrip.Name = "statusStrip";
  67. this.statusStrip.Size = new System.Drawing.Size(920, 22);
  68. this.statusStrip.TabIndex = 2;
  69. //
  70. // lb_RunStatus
  71. //
  72. this.lb_RunStatus.Name = "lb_RunStatus";
  73. this.lb_RunStatus.Size = new System.Drawing.Size(0, 17);
  74. //
  75. // toolStripStatusLabel1
  76. //
  77. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  78. this.toolStripStatusLabel1.Size = new System.Drawing.Size(16, 17);
  79. this.toolStripStatusLabel1.Text = " ";
  80. //
  81. // lb_RunTime
  82. //
  83. this.lb_RunTime.Name = "lb_RunTime";
  84. this.lb_RunTime.Size = new System.Drawing.Size(0, 17);
  85. //
  86. // ToolBaseForm
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(920, 585);
  91. this.Controls.Add(this.toolStrip1);
  92. this.Controls.Add(this.statusStrip);
  93. this.Name = "ToolBaseForm";
  94. this.Text = "工具";
  95. this.toolStrip1.ResumeLayout(false);
  96. this.toolStrip1.PerformLayout();
  97. this.statusStrip.ResumeLayout(false);
  98. this.statusStrip.PerformLayout();
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.ToolStrip toolStrip1;
  104. private System.Windows.Forms.ToolStripButton tsbtRunTool;
  105. private System.Windows.Forms.StatusStrip statusStrip;
  106. private System.Windows.Forms.ToolStripStatusLabel lb_RunStatus;
  107. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  108. private System.Windows.Forms.ToolStripStatusLabel lb_RunTime;
  109. }
  110. }