TestPackForm.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. namespace Y.Test.Views
  2. {
  3. partial class TestPackForm
  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. this.BTPack = new System.Windows.Forms.Button();
  29. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.TBFrom = new System.Windows.Forms.TextBox();
  32. this.TBTo = new System.Windows.Forms.TextBox();
  33. this.BTUnpack = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // BTPack
  37. //
  38. this.BTPack.Location = new System.Drawing.Point(263, 235);
  39. this.BTPack.Name = "BTPack";
  40. this.BTPack.Size = new System.Drawing.Size(75, 23);
  41. this.BTPack.TabIndex = 0;
  42. this.BTPack.Text = "Pack";
  43. this.BTPack.UseVisualStyleBackColor = true;
  44. this.BTPack.Click += new System.EventHandler(this.BTPack_Click);
  45. //
  46. // progressBar1
  47. //
  48. this.progressBar1.Location = new System.Drawing.Point(12, 150);
  49. this.progressBar1.Name = "progressBar1";
  50. this.progressBar1.Size = new System.Drawing.Size(454, 23);
  51. this.progressBar1.TabIndex = 1;
  52. //
  53. // label1
  54. //
  55. this.label1.AutoSize = true;
  56. this.label1.Location = new System.Drawing.Point(12, 176);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(41, 12);
  59. this.label1.TabIndex = 2;
  60. this.label1.Text = "label1";
  61. //
  62. // TBFrom
  63. //
  64. this.TBFrom.Location = new System.Drawing.Point(15, 45);
  65. this.TBFrom.Name = "TBFrom";
  66. this.TBFrom.Size = new System.Drawing.Size(452, 21);
  67. this.TBFrom.TabIndex = 3;
  68. this.TBFrom.Text = "D:\\Temp\\测试打包\\bag1.bag";
  69. //
  70. // TBTo
  71. //
  72. this.TBTo.Location = new System.Drawing.Point(15, 87);
  73. this.TBTo.Name = "TBTo";
  74. this.TBTo.Size = new System.Drawing.Size(452, 21);
  75. this.TBTo.TabIndex = 4;
  76. this.TBTo.Text = "D:\\Temp\\测试打包\\unpack";
  77. //
  78. // BTUnpack
  79. //
  80. this.BTUnpack.Location = new System.Drawing.Point(391, 235);
  81. this.BTUnpack.Name = "BTUnpack";
  82. this.BTUnpack.Size = new System.Drawing.Size(75, 23);
  83. this.BTUnpack.TabIndex = 5;
  84. this.BTUnpack.Text = "Unpack";
  85. this.BTUnpack.UseVisualStyleBackColor = true;
  86. this.BTUnpack.Click += new System.EventHandler(this.BTUnpack_Click);
  87. //
  88. // TestPackForm
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(479, 270);
  93. this.Controls.Add(this.BTUnpack);
  94. this.Controls.Add(this.TBTo);
  95. this.Controls.Add(this.TBFrom);
  96. this.Controls.Add(this.label1);
  97. this.Controls.Add(this.progressBar1);
  98. this.Controls.Add(this.BTPack);
  99. this.Name = "TestPackForm";
  100. this.Text = "TestPackForm";
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private System.Windows.Forms.Button BTPack;
  106. private System.Windows.Forms.ProgressBar progressBar1;
  107. private System.Windows.Forms.Label label1;
  108. private System.Windows.Forms.TextBox TBFrom;
  109. private System.Windows.Forms.TextBox TBTo;
  110. private System.Windows.Forms.Button BTUnpack;
  111. }
  112. }