MainForm.Designer.cs 5.0 KB

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