MainForm.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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.button1 = new System.Windows.Forms.Button();
  34. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  35. this.SuspendLayout();
  36. //
  37. // BtFileEncrypt
  38. //
  39. this.BtFileEncrypt.Location = new System.Drawing.Point(51, 35);
  40. this.BtFileEncrypt.Name = "BtFileEncrypt";
  41. this.BtFileEncrypt.Size = new System.Drawing.Size(75, 23);
  42. this.BtFileEncrypt.TabIndex = 0;
  43. this.BtFileEncrypt.Text = "文件加密";
  44. this.BtFileEncrypt.UseVisualStyleBackColor = true;
  45. this.BtFileEncrypt.Click += new System.EventHandler(this.BtFileEncrypt_Click);
  46. //
  47. // button2
  48. //
  49. this.button2.Location = new System.Drawing.Point(51, 99);
  50. this.button2.Name = "button2";
  51. this.button2.Size = new System.Drawing.Size(75, 23);
  52. this.button2.TabIndex = 1;
  53. this.button2.Text = "文件夹加密";
  54. this.button2.UseVisualStyleBackColor = true;
  55. this.button2.Click += new System.EventHandler(this.button2_Click);
  56. //
  57. // button3
  58. //
  59. this.button3.Location = new System.Drawing.Point(51, 148);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(75, 23);
  62. this.button3.TabIndex = 2;
  63. this.button3.Text = "文件备份";
  64. this.button3.UseVisualStyleBackColor = true;
  65. //
  66. // button4
  67. //
  68. this.button4.Location = new System.Drawing.Point(51, 201);
  69. this.button4.Name = "button4";
  70. this.button4.Size = new System.Drawing.Size(75, 23);
  71. this.button4.TabIndex = 3;
  72. this.button4.Text = "文件保险箱";
  73. this.button4.UseVisualStyleBackColor = true;
  74. //
  75. // BtFileDecrypt
  76. //
  77. this.BtFileDecrypt.Location = new System.Drawing.Point(158, 35);
  78. this.BtFileDecrypt.Name = "BtFileDecrypt";
  79. this.BtFileDecrypt.Size = new System.Drawing.Size(75, 23);
  80. this.BtFileDecrypt.TabIndex = 4;
  81. this.BtFileDecrypt.Text = "文件解密";
  82. this.BtFileDecrypt.UseVisualStyleBackColor = true;
  83. this.BtFileDecrypt.Click += new System.EventHandler(this.BtFileDecrypt_Click);
  84. //
  85. // button1
  86. //
  87. this.button1.Location = new System.Drawing.Point(158, 99);
  88. this.button1.Name = "button1";
  89. this.button1.Size = new System.Drawing.Size(75, 23);
  90. this.button1.TabIndex = 5;
  91. this.button1.Text = "button1";
  92. this.button1.UseVisualStyleBackColor = true;
  93. this.button1.Click += new System.EventHandler(this.button1_Click);
  94. //
  95. // progressBar1
  96. //
  97. this.progressBar1.Location = new System.Drawing.Point(12, 284);
  98. this.progressBar1.Name = "progressBar1";
  99. this.progressBar1.Size = new System.Drawing.Size(281, 23);
  100. this.progressBar1.TabIndex = 6;
  101. //
  102. // MainForm
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  106. this.ClientSize = new System.Drawing.Size(305, 319);
  107. this.Controls.Add(this.progressBar1);
  108. this.Controls.Add(this.button1);
  109. this.Controls.Add(this.BtFileDecrypt);
  110. this.Controls.Add(this.button4);
  111. this.Controls.Add(this.button3);
  112. this.Controls.Add(this.button2);
  113. this.Controls.Add(this.BtFileEncrypt);
  114. this.Name = "MainForm";
  115. this.Text = "MainForm";
  116. this.Load += new System.EventHandler(this.MainForm_Load);
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.Button BtFileEncrypt;
  121. private System.Windows.Forms.Button button2;
  122. private System.Windows.Forms.Button button3;
  123. private System.Windows.Forms.Button button4;
  124. private System.Windows.Forms.Button BtFileDecrypt;
  125. private System.Windows.Forms.Button button1;
  126. private System.Windows.Forms.ProgressBar progressBar1;
  127. }
  128. }