FormMain.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace ToolsMPQ
  2. {
  3. partial class FormMain
  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.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // button1
  34. //
  35. this.button1.Location = new System.Drawing.Point(12, 107);
  36. this.button1.Name = "button1";
  37. this.button1.Size = new System.Drawing.Size(118, 44);
  38. this.button1.TabIndex = 0;
  39. this.button1.Text = "打开MPQ文件";
  40. this.button1.UseVisualStyleBackColor = true;
  41. this.button1.Click += new System.EventHandler(this.button1_Click);
  42. //
  43. // button2
  44. //
  45. this.button2.Location = new System.Drawing.Point(136, 107);
  46. this.button2.Name = "button2";
  47. this.button2.Size = new System.Drawing.Size(118, 44);
  48. this.button2.TabIndex = 1;
  49. this.button2.Text = "压缩MPQ";
  50. this.button2.UseVisualStyleBackColor = true;
  51. this.button2.Click += new System.EventHandler(this.button2_Click);
  52. //
  53. // label1
  54. //
  55. this.label1.AutoSize = true;
  56. this.label1.Location = new System.Drawing.Point(12, 9);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(131, 12);
  59. this.label1.TabIndex = 2;
  60. this.label1.Text = "拖入一个MPQ或一个目录";
  61. //
  62. // FormMain
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(415, 163);
  67. this.Controls.Add(this.label1);
  68. this.Controls.Add(this.button2);
  69. this.Controls.Add(this.button1);
  70. this.Name = "FormMain";
  71. this.Text = "MPQ";
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.Button button1;
  77. private System.Windows.Forms.Button button2;
  78. private System.Windows.Forms.Label label1;
  79. }
  80. }