Form1.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace WindowsFormsStatusStrip
  2. {
  3. partial class Form1
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  29. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
  32. this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
  33. this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
  34. this.statusStrip1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // statusStrip1
  38. //
  39. this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  40. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  41. this.toolStripStatusLabel1,
  42. this.toolStripStatusLabel2,
  43. this.toolStripSplitButton1,
  44. this.toolStripProgressBar1});
  45. this.statusStrip1.Location = new System.Drawing.Point(0, 230);
  46. this.statusStrip1.Name = "statusStrip1";
  47. this.statusStrip1.Size = new System.Drawing.Size(631, 26);
  48. this.statusStrip1.TabIndex = 0;
  49. this.statusStrip1.Text = "statusStrip1";
  50. //
  51. // toolStripStatusLabel1
  52. //
  53. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  54. this.toolStripStatusLabel1.Size = new System.Drawing.Size(114, 20);
  55. this.toolStripStatusLabel1.Text = "系统当前时间:";
  56. //
  57. // button1
  58. //
  59. this.button1.Location = new System.Drawing.Point(240, 61);
  60. this.button1.Name = "button1";
  61. this.button1.Size = new System.Drawing.Size(75, 23);
  62. this.button1.TabIndex = 1;
  63. this.button1.Text = "加载";
  64. this.button1.UseVisualStyleBackColor = true;
  65. this.button1.Click += new System.EventHandler(this.button1_Click);
  66. //
  67. // toolStripStatusLabel2
  68. //
  69. this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
  70. this.toolStripStatusLabel2.Size = new System.Drawing.Size(167, 20);
  71. this.toolStripStatusLabel2.Text = "toolStripStatusLabel2";
  72. //
  73. // toolStripProgressBar1
  74. //
  75. this.toolStripProgressBar1.Name = "toolStripProgressBar1";
  76. this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 18);
  77. //
  78. // toolStripSplitButton1
  79. //
  80. this.toolStripSplitButton1.Name = "toolStripSplitButton1";
  81. this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 24);
  82. this.toolStripSplitButton1.Text = "|";
  83. //
  84. // Form1
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.ClientSize = new System.Drawing.Size(631, 256);
  89. this.Controls.Add(this.button1);
  90. this.Controls.Add(this.statusStrip1);
  91. this.Name = "Form1";
  92. this.Text = "Form1";
  93. this.Load += new System.EventHandler(this.Form1_Load);
  94. this.statusStrip1.ResumeLayout(false);
  95. this.statusStrip1.PerformLayout();
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.StatusStrip statusStrip1;
  101. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  102. private System.Windows.Forms.Button button1;
  103. private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
  104. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2;
  105. private System.Windows.Forms.ToolStripSplitButton toolStripSplitButton1;
  106. }
  107. }