MainForm.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace Oreo.FileMan.Views
  2. {
  3. partial class MainForm
  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.BtFileEncrypt = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.BtFileDecrypt = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // BtFileEncrypt
  36. //
  37. this.BtFileEncrypt.Location = new System.Drawing.Point(51, 35);
  38. this.BtFileEncrypt.Name = "BtFileEncrypt";
  39. this.BtFileEncrypt.Size = new System.Drawing.Size(75, 23);
  40. this.BtFileEncrypt.TabIndex = 0;
  41. this.BtFileEncrypt.Text = "文件加密";
  42. this.BtFileEncrypt.UseVisualStyleBackColor = true;
  43. this.BtFileEncrypt.Click += new System.EventHandler(this.BtFileEncrypt_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.Location = new System.Drawing.Point(51, 99);
  48. this.button2.Name = "button2";
  49. this.button2.Size = new System.Drawing.Size(75, 23);
  50. this.button2.TabIndex = 1;
  51. this.button2.Text = "文件夹加密";
  52. this.button2.UseVisualStyleBackColor = true;
  53. //
  54. // button3
  55. //
  56. this.button3.Location = new System.Drawing.Point(51, 148);
  57. this.button3.Name = "button3";
  58. this.button3.Size = new System.Drawing.Size(75, 23);
  59. this.button3.TabIndex = 2;
  60. this.button3.Text = "文件备份";
  61. this.button3.UseVisualStyleBackColor = true;
  62. //
  63. // button4
  64. //
  65. this.button4.Location = new System.Drawing.Point(51, 201);
  66. this.button4.Name = "button4";
  67. this.button4.Size = new System.Drawing.Size(75, 23);
  68. this.button4.TabIndex = 3;
  69. this.button4.Text = "文件保险箱";
  70. this.button4.UseVisualStyleBackColor = true;
  71. //
  72. // BtFileDecrypt
  73. //
  74. this.BtFileDecrypt.Location = new System.Drawing.Point(158, 35);
  75. this.BtFileDecrypt.Name = "BtFileDecrypt";
  76. this.BtFileDecrypt.Size = new System.Drawing.Size(75, 23);
  77. this.BtFileDecrypt.TabIndex = 4;
  78. this.BtFileDecrypt.Text = "文件解密";
  79. this.BtFileDecrypt.UseVisualStyleBackColor = true;
  80. this.BtFileDecrypt.Click += new System.EventHandler(this.BtFileDecrypt_Click);
  81. //
  82. // MainForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(284, 261);
  87. this.Controls.Add(this.BtFileDecrypt);
  88. this.Controls.Add(this.button4);
  89. this.Controls.Add(this.button3);
  90. this.Controls.Add(this.button2);
  91. this.Controls.Add(this.BtFileEncrypt);
  92. this.Name = "MainForm";
  93. this.Text = "MainForm";
  94. this.Load += new System.EventHandler(this.MainForm_Load);
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.Button BtFileEncrypt;
  99. private System.Windows.Forms.Button button2;
  100. private System.Windows.Forms.Button button3;
  101. private System.Windows.Forms.Button button4;
  102. private System.Windows.Forms.Button BtFileDecrypt;
  103. }
  104. }