MainForm.Designer.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.tabControl1 = new System.Windows.Forms.TabControl();
  31. this.TpFIleType = new System.Windows.Forms.TabPage();
  32. this.fileTypePartial1 = new Oreo.FileMan.Partial.FileTypePartial();
  33. this.TpFileEncrypt = new System.Windows.Forms.TabPage();
  34. this.fileEncryptPartial1 = new Oreo.FileMan.Partial.FileEncryptPartial();
  35. this.TpFileDecrypt = new System.Windows.Forms.TabPage();
  36. this.fileDecryptPartial1 = new Oreo.FileMan.Partial.FileDecryptPartial();
  37. this.TpFileBackup = new System.Windows.Forms.TabPage();
  38. this.LbFileType = new System.Windows.Forms.Label();
  39. this.LbFileBackup = new System.Windows.Forms.Label();
  40. this.LbFileEncrypt = new System.Windows.Forms.Label();
  41. this.LbTitle = new System.Windows.Forms.Label();
  42. this.BtClose = new System.Windows.Forms.Button();
  43. this.tip = new System.Windows.Forms.ToolTip(this.components);
  44. this.LbAppVersion = new System.Windows.Forms.Label();
  45. this.BTSettings = new System.Windows.Forms.Button();
  46. this.LbFileDecrypt = new System.Windows.Forms.Label();
  47. this.PnBody = new System.Windows.Forms.Panel();
  48. this.NiMain = new System.Windows.Forms.NotifyIcon(this.components);
  49. this.PnMain = new System.Windows.Forms.Panel();
  50. this.PnBotton = new System.Windows.Forms.Panel();
  51. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  52. this.fileBackupPartial1 = new Oreo.FileMan.Partial.FileBackupPartial();
  53. this.tabControl1.SuspendLayout();
  54. this.TpFIleType.SuspendLayout();
  55. this.TpFileEncrypt.SuspendLayout();
  56. this.TpFileDecrypt.SuspendLayout();
  57. this.TpFileBackup.SuspendLayout();
  58. this.PnBody.SuspendLayout();
  59. this.PnMain.SuspendLayout();
  60. this.PnBotton.SuspendLayout();
  61. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  62. this.SuspendLayout();
  63. //
  64. // tabControl1
  65. //
  66. this.tabControl1.Controls.Add(this.TpFIleType);
  67. this.tabControl1.Controls.Add(this.TpFileEncrypt);
  68. this.tabControl1.Controls.Add(this.TpFileDecrypt);
  69. this.tabControl1.Controls.Add(this.TpFileBackup);
  70. this.tabControl1.Location = new System.Drawing.Point(-5, -24);
  71. this.tabControl1.Name = "tabControl1";
  72. this.tabControl1.SelectedIndex = 0;
  73. this.tabControl1.Size = new System.Drawing.Size(660, 358);
  74. this.tabControl1.TabIndex = 13;
  75. //
  76. // TpFIleType
  77. //
  78. this.TpFIleType.Controls.Add(this.fileTypePartial1);
  79. this.TpFIleType.Location = new System.Drawing.Point(4, 22);
  80. this.TpFIleType.Name = "TpFIleType";
  81. this.TpFIleType.Padding = new System.Windows.Forms.Padding(3);
  82. this.TpFIleType.Size = new System.Drawing.Size(652, 332);
  83. this.TpFIleType.TabIndex = 0;
  84. this.TpFIleType.Text = "文件分类";
  85. this.TpFIleType.UseVisualStyleBackColor = true;
  86. //
  87. // fileTypePartial1
  88. //
  89. this.fileTypePartial1.BackColor = System.Drawing.Color.White;
  90. this.fileTypePartial1.Dock = System.Windows.Forms.DockStyle.Fill;
  91. this.fileTypePartial1.Location = new System.Drawing.Point(3, 3);
  92. this.fileTypePartial1.Name = "fileTypePartial1";
  93. this.fileTypePartial1.Size = new System.Drawing.Size(646, 326);
  94. this.fileTypePartial1.TabIndex = 0;
  95. //
  96. // TpFileEncrypt
  97. //
  98. this.TpFileEncrypt.Controls.Add(this.fileEncryptPartial1);
  99. this.TpFileEncrypt.Location = new System.Drawing.Point(4, 22);
  100. this.TpFileEncrypt.Name = "TpFileEncrypt";
  101. this.TpFileEncrypt.Padding = new System.Windows.Forms.Padding(3);
  102. this.TpFileEncrypt.Size = new System.Drawing.Size(652, 332);
  103. this.TpFileEncrypt.TabIndex = 2;
  104. this.TpFileEncrypt.Text = "文件加密";
  105. this.TpFileEncrypt.UseVisualStyleBackColor = true;
  106. //
  107. // fileEncryptPartial1
  108. //
  109. this.fileEncryptPartial1.Dock = System.Windows.Forms.DockStyle.Fill;
  110. this.fileEncryptPartial1.Location = new System.Drawing.Point(3, 3);
  111. this.fileEncryptPartial1.Name = "fileEncryptPartial1";
  112. this.fileEncryptPartial1.Size = new System.Drawing.Size(646, 326);
  113. this.fileEncryptPartial1.TabIndex = 0;
  114. //
  115. // TpFileDecrypt
  116. //
  117. this.TpFileDecrypt.Controls.Add(this.fileDecryptPartial1);
  118. this.TpFileDecrypt.Location = new System.Drawing.Point(4, 22);
  119. this.TpFileDecrypt.Name = "TpFileDecrypt";
  120. this.TpFileDecrypt.Padding = new System.Windows.Forms.Padding(3);
  121. this.TpFileDecrypt.Size = new System.Drawing.Size(652, 332);
  122. this.TpFileDecrypt.TabIndex = 4;
  123. this.TpFileDecrypt.Text = "文件解密";
  124. this.TpFileDecrypt.UseVisualStyleBackColor = true;
  125. //
  126. // fileDecryptPartial1
  127. //
  128. this.fileDecryptPartial1.Dock = System.Windows.Forms.DockStyle.Fill;
  129. this.fileDecryptPartial1.Location = new System.Drawing.Point(3, 3);
  130. this.fileDecryptPartial1.Name = "fileDecryptPartial1";
  131. this.fileDecryptPartial1.Size = new System.Drawing.Size(646, 326);
  132. this.fileDecryptPartial1.TabIndex = 0;
  133. //
  134. // TpFileBackup
  135. //
  136. this.TpFileBackup.Controls.Add(this.fileBackupPartial1);
  137. this.TpFileBackup.Location = new System.Drawing.Point(4, 22);
  138. this.TpFileBackup.Name = "TpFileBackup";
  139. this.TpFileBackup.Padding = new System.Windows.Forms.Padding(3);
  140. this.TpFileBackup.Size = new System.Drawing.Size(652, 332);
  141. this.TpFileBackup.TabIndex = 3;
  142. this.TpFileBackup.Text = "文件备份";
  143. this.TpFileBackup.UseVisualStyleBackColor = true;
  144. //
  145. // LbFileType
  146. //
  147. this.LbFileType.AutoSize = true;
  148. this.LbFileType.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  149. this.LbFileType.ForeColor = System.Drawing.Color.White;
  150. this.LbFileType.Location = new System.Drawing.Point(365, 42);
  151. this.LbFileType.Name = "LbFileType";
  152. this.LbFileType.Size = new System.Drawing.Size(52, 27);
  153. this.LbFileType.TabIndex = 14;
  154. this.LbFileType.Text = "分类";
  155. this.LbFileType.Click += new System.EventHandler(this.LbFileType_Click);
  156. //
  157. // LbFileBackup
  158. //
  159. this.LbFileBackup.AutoSize = true;
  160. this.LbFileBackup.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  161. this.LbFileBackup.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(161)))), ((int)(((byte)(213)))));
  162. this.LbFileBackup.Location = new System.Drawing.Point(586, 42);
  163. this.LbFileBackup.Name = "LbFileBackup";
  164. this.LbFileBackup.Size = new System.Drawing.Size(52, 27);
  165. this.LbFileBackup.TabIndex = 16;
  166. this.LbFileBackup.Text = "备份";
  167. this.LbFileBackup.Click += new System.EventHandler(this.LbFileBackup_Click);
  168. //
  169. // LbFileEncrypt
  170. //
  171. this.LbFileEncrypt.AutoSize = true;
  172. this.LbFileEncrypt.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  173. this.LbFileEncrypt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(161)))), ((int)(((byte)(213)))));
  174. this.LbFileEncrypt.Location = new System.Drawing.Point(447, 42);
  175. this.LbFileEncrypt.Name = "LbFileEncrypt";
  176. this.LbFileEncrypt.Size = new System.Drawing.Size(52, 27);
  177. this.LbFileEncrypt.TabIndex = 15;
  178. this.LbFileEncrypt.Text = "加密";
  179. this.LbFileEncrypt.Click += new System.EventHandler(this.LbFileEncrypt_Click);
  180. //
  181. // LbTitle
  182. //
  183. this.LbTitle.AutoSize = true;
  184. this.LbTitle.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  185. this.LbTitle.ForeColor = System.Drawing.Color.White;
  186. this.LbTitle.Location = new System.Drawing.Point(69, 22);
  187. this.LbTitle.Name = "LbTitle";
  188. this.LbTitle.Size = new System.Drawing.Size(88, 25);
  189. this.LbTitle.TabIndex = 18;
  190. this.LbTitle.Text = "文件管理";
  191. //
  192. // BtClose
  193. //
  194. this.BtClose.FlatAppearance.BorderSize = 0;
  195. this.BtClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  196. this.BtClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  197. this.BtClose.ForeColor = System.Drawing.Color.White;
  198. this.BtClose.Location = new System.Drawing.Point(615, 7);
  199. this.BtClose.Name = "BtClose";
  200. this.BtClose.Size = new System.Drawing.Size(30, 23);
  201. this.BtClose.TabIndex = 19;
  202. this.BtClose.Text = "X";
  203. this.tip.SetToolTip(this.BtClose, "关闭");
  204. this.BtClose.UseVisualStyleBackColor = true;
  205. this.BtClose.Click += new System.EventHandler(this.BtClose_Click);
  206. //
  207. // LbAppVersion
  208. //
  209. this.LbAppVersion.ForeColor = System.Drawing.Color.Gray;
  210. this.LbAppVersion.Location = new System.Drawing.Point(501, 4);
  211. this.LbAppVersion.Name = "LbAppVersion";
  212. this.LbAppVersion.Size = new System.Drawing.Size(140, 19);
  213. this.LbAppVersion.TabIndex = 0;
  214. this.LbAppVersion.Text = "当前版本:10.10.10.10";
  215. this.LbAppVersion.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  216. this.tip.SetToolTip(this.LbAppVersion, "当前软件版本");
  217. //
  218. // BTSettings
  219. //
  220. this.BTSettings.FlatAppearance.BorderSize = 0;
  221. this.BTSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  222. this.BTSettings.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  223. this.BTSettings.ForeColor = System.Drawing.Color.White;
  224. this.BTSettings.Location = new System.Drawing.Point(583, 7);
  225. this.BTSettings.Name = "BTSettings";
  226. this.BTSettings.Size = new System.Drawing.Size(30, 23);
  227. this.BTSettings.TabIndex = 23;
  228. this.BTSettings.Text = "✿";
  229. this.tip.SetToolTip(this.BTSettings, "设置");
  230. this.BTSettings.UseVisualStyleBackColor = true;
  231. this.BTSettings.Click += new System.EventHandler(this.BTSettings_Click);
  232. //
  233. // LbFileDecrypt
  234. //
  235. this.LbFileDecrypt.AutoSize = true;
  236. this.LbFileDecrypt.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  237. this.LbFileDecrypt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(161)))), ((int)(((byte)(213)))));
  238. this.LbFileDecrypt.Location = new System.Drawing.Point(493, 42);
  239. this.LbFileDecrypt.Name = "LbFileDecrypt";
  240. this.LbFileDecrypt.Size = new System.Drawing.Size(67, 27);
  241. this.LbFileDecrypt.TabIndex = 20;
  242. this.LbFileDecrypt.Text = "/ 解密";
  243. this.LbFileDecrypt.Click += new System.EventHandler(this.LbFileDecrypt_Click);
  244. //
  245. // PnBody
  246. //
  247. this.PnBody.Controls.Add(this.tabControl1);
  248. this.PnBody.Dock = System.Windows.Forms.DockStyle.Fill;
  249. this.PnBody.Location = new System.Drawing.Point(0, 0);
  250. this.PnBody.Name = "PnBody";
  251. this.PnBody.Size = new System.Drawing.Size(650, 356);
  252. this.PnBody.TabIndex = 21;
  253. //
  254. // NiMain
  255. //
  256. this.NiMain.Icon = ((System.Drawing.Icon)(resources.GetObject("NiMain.Icon")));
  257. this.NiMain.Text = "notifyIcon1";
  258. this.NiMain.Visible = true;
  259. //
  260. // PnMain
  261. //
  262. this.PnMain.Controls.Add(this.PnBotton);
  263. this.PnMain.Controls.Add(this.PnBody);
  264. this.PnMain.Dock = System.Windows.Forms.DockStyle.Bottom;
  265. this.PnMain.Location = new System.Drawing.Point(0, 70);
  266. this.PnMain.Name = "PnMain";
  267. this.PnMain.Size = new System.Drawing.Size(650, 356);
  268. this.PnMain.TabIndex = 22;
  269. //
  270. // PnBotton
  271. //
  272. this.PnBotton.Controls.Add(this.LbAppVersion);
  273. this.PnBotton.Dock = System.Windows.Forms.DockStyle.Bottom;
  274. this.PnBotton.Location = new System.Drawing.Point(0, 329);
  275. this.PnBotton.Name = "PnBotton";
  276. this.PnBotton.Size = new System.Drawing.Size(650, 27);
  277. this.PnBotton.TabIndex = 22;
  278. //
  279. // pictureBox1
  280. //
  281. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  282. this.pictureBox1.Location = new System.Drawing.Point(10, 9);
  283. this.pictureBox1.Name = "pictureBox1";
  284. this.pictureBox1.Size = new System.Drawing.Size(60, 51);
  285. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  286. this.pictureBox1.TabIndex = 17;
  287. this.pictureBox1.TabStop = false;
  288. //
  289. // fileBackupPartial1
  290. //
  291. this.fileBackupPartial1.Dock = System.Windows.Forms.DockStyle.Fill;
  292. this.fileBackupPartial1.Location = new System.Drawing.Point(3, 3);
  293. this.fileBackupPartial1.Name = "fileBackupPartial1";
  294. this.fileBackupPartial1.Size = new System.Drawing.Size(646, 326);
  295. this.fileBackupPartial1.TabIndex = 0;
  296. //
  297. // MainForm
  298. //
  299. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  300. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  301. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(43)))), ((int)(((byte)(54)))));
  302. this.ClientSize = new System.Drawing.Size(650, 426);
  303. this.Controls.Add(this.BTSettings);
  304. this.Controls.Add(this.PnMain);
  305. this.Controls.Add(this.LbFileDecrypt);
  306. this.Controls.Add(this.BtClose);
  307. this.Controls.Add(this.LbTitle);
  308. this.Controls.Add(this.pictureBox1);
  309. this.Controls.Add(this.LbFileBackup);
  310. this.Controls.Add(this.LbFileEncrypt);
  311. this.Controls.Add(this.LbFileType);
  312. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  313. this.Name = "MainForm";
  314. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  315. this.Text = "MainForm";
  316. this.Load += new System.EventHandler(this.MainForm_Load);
  317. this.tabControl1.ResumeLayout(false);
  318. this.TpFIleType.ResumeLayout(false);
  319. this.TpFileEncrypt.ResumeLayout(false);
  320. this.TpFileDecrypt.ResumeLayout(false);
  321. this.TpFileBackup.ResumeLayout(false);
  322. this.PnBody.ResumeLayout(false);
  323. this.PnMain.ResumeLayout(false);
  324. this.PnBotton.ResumeLayout(false);
  325. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  326. this.ResumeLayout(false);
  327. this.PerformLayout();
  328. }
  329. #endregion
  330. private System.Windows.Forms.TabControl tabControl1;
  331. private System.Windows.Forms.TabPage TpFIleType;
  332. private System.Windows.Forms.Label LbFileType;
  333. private System.Windows.Forms.Label LbFileBackup;
  334. private System.Windows.Forms.Label LbFileEncrypt;
  335. private System.Windows.Forms.TabPage TpFileEncrypt;
  336. private System.Windows.Forms.TabPage TpFileBackup;
  337. private System.Windows.Forms.PictureBox pictureBox1;
  338. private System.Windows.Forms.Label LbTitle;
  339. private System.Windows.Forms.Button BtClose;
  340. private System.Windows.Forms.ToolTip tip;
  341. private System.Windows.Forms.TabPage TpFileDecrypt;
  342. private System.Windows.Forms.Label LbFileDecrypt;
  343. private System.Windows.Forms.Panel PnBody;
  344. private Partial.FileEncryptPartial fileEncryptPartial1;
  345. private Partial.FileDecryptPartial fileDecryptPartial1;
  346. private Partial.FileTypePartial fileTypePartial1;
  347. private System.Windows.Forms.NotifyIcon NiMain;
  348. private System.Windows.Forms.Panel PnMain;
  349. private System.Windows.Forms.Panel PnBotton;
  350. private System.Windows.Forms.Label LbAppVersion;
  351. private System.Windows.Forms.Button BTSettings;
  352. private Partial.FileBackupPartial fileBackupPartial1;
  353. }
  354. }