Form1.Designer.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. namespace ToolsMPQ
  2. {
  3. partial class FormUnarchive
  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.components = new System.ComponentModel.Container();
  29. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // progressBar1
  35. //
  36. this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  37. | System.Windows.Forms.AnchorStyles.Right)));
  38. this.progressBar1.Location = new System.Drawing.Point(12, 12);
  39. this.progressBar1.Name = "progressBar1";
  40. this.progressBar1.Size = new System.Drawing.Size(507, 23);
  41. this.progressBar1.TabIndex = 0;
  42. //
  43. // label1
  44. //
  45. this.label1.AutoSize = true;
  46. this.label1.Location = new System.Drawing.Point(12, 38);
  47. this.label1.Name = "label1";
  48. this.label1.Size = new System.Drawing.Size(41, 12);
  49. this.label1.TabIndex = 1;
  50. this.label1.Text = "label1";
  51. //
  52. // timer1
  53. //
  54. this.timer1.Enabled = true;
  55. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  56. //
  57. // FormUnarchive
  58. //
  59. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  60. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61. this.ClientSize = new System.Drawing.Size(531, 108);
  62. this.Controls.Add(this.label1);
  63. this.Controls.Add(this.progressBar1);
  64. this.Name = "FormUnarchive";
  65. this.Text = "FormUnarchive";
  66. this.ResumeLayout(false);
  67. this.PerformLayout();
  68. }
  69. #endregion
  70. private System.Windows.Forms.ProgressBar progressBar1;
  71. private System.Windows.Forms.Label label1;
  72. private System.Windows.Forms.Timer timer1;
  73. }
  74. }