FileRestoreForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. namespace Oreo.FileMan.Views
  2. {
  3. partial class FileRestoreForm
  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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  35. this.BtClose = new System.Windows.Forms.Button();
  36. this.DgvFiles = new System.Windows.Forms.DataGridView();
  37. this.DgvFilesVersion = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.DgvFilesLastWriteTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.DgvFilesSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.LbFileName = new System.Windows.Forms.Label();
  41. this.LbPath = new System.Windows.Forms.Label();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.label2 = new System.Windows.Forms.Label();
  44. this.LbVersion = new System.Windows.Forms.Label();
  45. this.BtRestoreToOld = new System.Windows.Forms.Button();
  46. this.BtRestoreToNew = new System.Windows.Forms.Button();
  47. this.panel1 = new System.Windows.Forms.Panel();
  48. this.panel2 = new System.Windows.Forms.Panel();
  49. this.TtLabel = new System.Windows.Forms.ToolTip(this.components);
  50. ((System.ComponentModel.ISupportInitialize)(this.DgvFiles)).BeginInit();
  51. this.panel1.SuspendLayout();
  52. this.panel2.SuspendLayout();
  53. this.SuspendLayout();
  54. //
  55. // BtClose
  56. //
  57. this.BtClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  58. this.BtClose.FlatAppearance.BorderSize = 0;
  59. this.BtClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  60. this.BtClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.BtClose.ForeColor = System.Drawing.Color.White;
  62. this.BtClose.Location = new System.Drawing.Point(384, 4);
  63. this.BtClose.Name = "BtClose";
  64. this.BtClose.Size = new System.Drawing.Size(30, 23);
  65. this.BtClose.TabIndex = 20;
  66. this.BtClose.Text = "X";
  67. this.BtClose.UseVisualStyleBackColor = true;
  68. this.BtClose.Click += new System.EventHandler(this.BtClose_Click);
  69. //
  70. // DgvFiles
  71. //
  72. this.DgvFiles.AllowUserToAddRows = false;
  73. this.DgvFiles.AllowUserToDeleteRows = false;
  74. this.DgvFiles.AllowUserToResizeColumns = false;
  75. this.DgvFiles.AllowUserToResizeRows = false;
  76. this.DgvFiles.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  77. this.DgvFiles.BackgroundColor = System.Drawing.Color.White;
  78. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  79. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
  80. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  81. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  82. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  83. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  84. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  85. this.DgvFiles.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  86. this.DgvFiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  87. this.DgvFiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  88. this.DgvFilesVersion,
  89. this.DgvFilesLastWriteTime,
  90. this.DgvFilesSize});
  91. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  92. dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window;
  93. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  94. dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText;
  95. dataGridViewCellStyle5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
  96. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.GradientActiveCaption;
  97. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.Black;
  98. dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  99. this.DgvFiles.DefaultCellStyle = dataGridViewCellStyle5;
  100. this.DgvFiles.Dock = System.Windows.Forms.DockStyle.Fill;
  101. this.DgvFiles.GridColor = System.Drawing.Color.Silver;
  102. this.DgvFiles.Location = new System.Drawing.Point(0, 0);
  103. this.DgvFiles.Name = "DgvFiles";
  104. this.DgvFiles.ReadOnly = true;
  105. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  106. dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
  107. dataGridViewCellStyle6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  108. dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
  109. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  110. dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  111. dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  112. this.DgvFiles.RowHeadersDefaultCellStyle = dataGridViewCellStyle6;
  113. this.DgvFiles.RowHeadersVisible = false;
  114. this.DgvFiles.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  115. this.DgvFiles.RowTemplate.Height = 23;
  116. this.DgvFiles.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  117. this.DgvFiles.Size = new System.Drawing.Size(417, 207);
  118. this.DgvFiles.TabIndex = 21;
  119. //
  120. // DgvFilesVersion
  121. //
  122. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  123. this.DgvFilesVersion.DefaultCellStyle = dataGridViewCellStyle2;
  124. this.DgvFilesVersion.FillWeight = 50F;
  125. this.DgvFilesVersion.HeaderText = "版本";
  126. this.DgvFilesVersion.Name = "DgvFilesVersion";
  127. this.DgvFilesVersion.ReadOnly = true;
  128. //
  129. // DgvFilesLastWriteTime
  130. //
  131. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  132. this.DgvFilesLastWriteTime.DefaultCellStyle = dataGridViewCellStyle3;
  133. this.DgvFilesLastWriteTime.HeaderText = "最后修改时间";
  134. this.DgvFilesLastWriteTime.Name = "DgvFilesLastWriteTime";
  135. this.DgvFilesLastWriteTime.ReadOnly = true;
  136. this.DgvFilesLastWriteTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  137. //
  138. // DgvFilesSize
  139. //
  140. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  141. this.DgvFilesSize.DefaultCellStyle = dataGridViewCellStyle4;
  142. this.DgvFilesSize.FillWeight = 80F;
  143. this.DgvFilesSize.HeaderText = "文件大小";
  144. this.DgvFilesSize.Name = "DgvFilesSize";
  145. this.DgvFilesSize.ReadOnly = true;
  146. this.DgvFilesSize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  147. //
  148. // LbFileName
  149. //
  150. this.LbFileName.ForeColor = System.Drawing.Color.White;
  151. this.LbFileName.Location = new System.Drawing.Point(90, 30);
  152. this.LbFileName.Name = "LbFileName";
  153. this.LbFileName.Size = new System.Drawing.Size(244, 12);
  154. this.LbFileName.TabIndex = 22;
  155. this.LbFileName.Text = "文件名";
  156. //
  157. // LbPath
  158. //
  159. this.LbPath.ForeColor = System.Drawing.Color.White;
  160. this.LbPath.Location = new System.Drawing.Point(90, 50);
  161. this.LbPath.Name = "LbPath";
  162. this.LbPath.Size = new System.Drawing.Size(244, 30);
  163. this.LbPath.TabIndex = 23;
  164. this.LbPath.Text = "路径\r\n路径";
  165. //
  166. // label1
  167. //
  168. this.label1.AutoSize = true;
  169. this.label1.ForeColor = System.Drawing.Color.White;
  170. this.label1.Location = new System.Drawing.Point(33, 30);
  171. this.label1.Name = "label1";
  172. this.label1.Size = new System.Drawing.Size(53, 12);
  173. this.label1.TabIndex = 24;
  174. this.label1.Text = "文件名:";
  175. //
  176. // label2
  177. //
  178. this.label2.AutoSize = true;
  179. this.label2.ForeColor = System.Drawing.Color.White;
  180. this.label2.Location = new System.Drawing.Point(33, 50);
  181. this.label2.Name = "label2";
  182. this.label2.Size = new System.Drawing.Size(41, 12);
  183. this.label2.TabIndex = 25;
  184. this.label2.Text = "路径:";
  185. //
  186. // LbVersion
  187. //
  188. this.LbVersion.AutoSize = true;
  189. this.LbVersion.ForeColor = System.Drawing.Color.White;
  190. this.LbVersion.Location = new System.Drawing.Point(362, 65);
  191. this.LbVersion.Name = "LbVersion";
  192. this.LbVersion.Size = new System.Drawing.Size(47, 12);
  193. this.LbVersion.TabIndex = 26;
  194. this.LbVersion.Text = "共 - 版";
  195. //
  196. // BtRestoreToOld
  197. //
  198. this.BtRestoreToOld.Location = new System.Drawing.Point(234, 11);
  199. this.BtRestoreToOld.Name = "BtRestoreToOld";
  200. this.BtRestoreToOld.Size = new System.Drawing.Size(150, 23);
  201. this.BtRestoreToOld.TabIndex = 28;
  202. this.BtRestoreToOld.Text = "还原到原始目录";
  203. this.BtRestoreToOld.UseVisualStyleBackColor = true;
  204. this.BtRestoreToOld.Click += new System.EventHandler(this.BtRestoreToOld_Click);
  205. //
  206. // BtRestoreToNew
  207. //
  208. this.BtRestoreToNew.Location = new System.Drawing.Point(32, 11);
  209. this.BtRestoreToNew.Name = "BtRestoreToNew";
  210. this.BtRestoreToNew.Size = new System.Drawing.Size(150, 23);
  211. this.BtRestoreToNew.TabIndex = 29;
  212. this.BtRestoreToNew.Text = "还原到指定目录...";
  213. this.BtRestoreToNew.UseVisualStyleBackColor = true;
  214. this.BtRestoreToNew.Click += new System.EventHandler(this.BtRestoreToNew_Click);
  215. //
  216. // panel1
  217. //
  218. this.panel1.Controls.Add(this.BtRestoreToOld);
  219. this.panel1.Controls.Add(this.BtRestoreToNew);
  220. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  221. this.panel1.Location = new System.Drawing.Point(0, 288);
  222. this.panel1.Name = "panel1";
  223. this.panel1.Size = new System.Drawing.Size(417, 47);
  224. this.panel1.TabIndex = 30;
  225. //
  226. // panel2
  227. //
  228. this.panel2.Controls.Add(this.DgvFiles);
  229. this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  230. this.panel2.Location = new System.Drawing.Point(0, 81);
  231. this.panel2.Name = "panel2";
  232. this.panel2.Size = new System.Drawing.Size(417, 207);
  233. this.panel2.TabIndex = 31;
  234. //
  235. // FileRestoreForm
  236. //
  237. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  238. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  239. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(43)))), ((int)(((byte)(54)))));
  240. this.CancelButton = this.BtClose;
  241. this.ClientSize = new System.Drawing.Size(417, 335);
  242. this.Controls.Add(this.panel2);
  243. this.Controls.Add(this.panel1);
  244. this.Controls.Add(this.LbVersion);
  245. this.Controls.Add(this.label2);
  246. this.Controls.Add(this.label1);
  247. this.Controls.Add(this.LbPath);
  248. this.Controls.Add(this.LbFileName);
  249. this.Controls.Add(this.BtClose);
  250. this.Name = "FileRestoreForm";
  251. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  252. this.Text = "FileRestoreForm";
  253. this.Load += new System.EventHandler(this.FileRestoreForm_Load);
  254. ((System.ComponentModel.ISupportInitialize)(this.DgvFiles)).EndInit();
  255. this.panel1.ResumeLayout(false);
  256. this.panel2.ResumeLayout(false);
  257. this.ResumeLayout(false);
  258. this.PerformLayout();
  259. }
  260. #endregion
  261. private System.Windows.Forms.Button BtClose;
  262. private System.Windows.Forms.DataGridView DgvFiles;
  263. private System.Windows.Forms.Label LbFileName;
  264. private System.Windows.Forms.Label LbPath;
  265. private System.Windows.Forms.Label label1;
  266. private System.Windows.Forms.Label label2;
  267. private System.Windows.Forms.Label LbVersion;
  268. private System.Windows.Forms.Button BtRestoreToOld;
  269. private System.Windows.Forms.Button BtRestoreToNew;
  270. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilesVersion;
  271. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilesLastWriteTime;
  272. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilesSize;
  273. private System.Windows.Forms.Panel panel1;
  274. private System.Windows.Forms.Panel panel2;
  275. private System.Windows.Forms.ToolTip TtLabel;
  276. }
  277. }