FileBackupPartial.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. namespace Oreo.FileMan.Partials
  2. {
  3. partial class FileBackupPartial
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.DgvPath = new System.Windows.Forms.DataGridView();
  29. this.DgvPathName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  30. this.DgvPathSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.BtAddPath = new System.Windows.Forms.Button();
  32. this.DgvFile = new System.Windows.Forms.DataGridView();
  33. this.DgvFileName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.DgvFilePath = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.DgvFileSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.DgvFileVersionHistory = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.DgvFileLastBackupTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.button1 = new System.Windows.Forms.Button();
  39. this.textBox1 = new System.Windows.Forms.TextBox();
  40. this.button2 = new System.Windows.Forms.Button();
  41. this.BtDelPath = new System.Windows.Forms.Button();
  42. ((System.ComponentModel.ISupportInitialize)(this.DgvPath)).BeginInit();
  43. ((System.ComponentModel.ISupportInitialize)(this.DgvFile)).BeginInit();
  44. this.SuspendLayout();
  45. //
  46. // DgvPath
  47. //
  48. this.DgvPath.AllowUserToAddRows = false;
  49. this.DgvPath.AllowUserToDeleteRows = false;
  50. this.DgvPath.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  51. this.DgvPath.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  52. this.DgvPathName,
  53. this.DgvPathSize});
  54. this.DgvPath.Location = new System.Drawing.Point(7, 38);
  55. this.DgvPath.Name = "DgvPath";
  56. this.DgvPath.ReadOnly = true;
  57. this.DgvPath.RowHeadersVisible = false;
  58. this.DgvPath.RowTemplate.Height = 23;
  59. this.DgvPath.Size = new System.Drawing.Size(214, 249);
  60. this.DgvPath.TabIndex = 0;
  61. this.DgvPath.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvPath_CellDoubleClick);
  62. //
  63. // DgvPathName
  64. //
  65. this.DgvPathName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  66. this.DgvPathName.HeaderText = "文件夹";
  67. this.DgvPathName.Name = "DgvPathName";
  68. this.DgvPathName.ReadOnly = true;
  69. this.DgvPathName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  70. //
  71. // DgvPathSize
  72. //
  73. this.DgvPathSize.HeaderText = "大小";
  74. this.DgvPathSize.Name = "DgvPathSize";
  75. this.DgvPathSize.ReadOnly = true;
  76. this.DgvPathSize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  77. this.DgvPathSize.Width = 60;
  78. //
  79. // BtAddPath
  80. //
  81. this.BtAddPath.Location = new System.Drawing.Point(7, 6);
  82. this.BtAddPath.Name = "BtAddPath";
  83. this.BtAddPath.Size = new System.Drawing.Size(75, 23);
  84. this.BtAddPath.TabIndex = 1;
  85. this.BtAddPath.Text = "添加目录";
  86. this.BtAddPath.UseVisualStyleBackColor = true;
  87. this.BtAddPath.Click += new System.EventHandler(this.BtAddPath_Click);
  88. //
  89. // DgvFile
  90. //
  91. this.DgvFile.AllowUserToAddRows = false;
  92. this.DgvFile.AllowUserToDeleteRows = false;
  93. this.DgvFile.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  94. this.DgvFile.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  95. this.DgvFileName,
  96. this.DgvFilePath,
  97. this.DgvFileSize,
  98. this.DgvFileVersionHistory,
  99. this.DgvFileLastBackupTime});
  100. this.DgvFile.Location = new System.Drawing.Point(252, 38);
  101. this.DgvFile.Name = "DgvFile";
  102. this.DgvFile.ReadOnly = true;
  103. this.DgvFile.RowHeadersVisible = false;
  104. this.DgvFile.RowTemplate.Height = 23;
  105. this.DgvFile.Size = new System.Drawing.Size(385, 249);
  106. this.DgvFile.TabIndex = 2;
  107. //
  108. // DgvFileName
  109. //
  110. this.DgvFileName.HeaderText = "文件名";
  111. this.DgvFileName.Name = "DgvFileName";
  112. this.DgvFileName.ReadOnly = true;
  113. this.DgvFileName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  114. //
  115. // DgvFilePath
  116. //
  117. this.DgvFilePath.HeaderText = "路径";
  118. this.DgvFilePath.Name = "DgvFilePath";
  119. this.DgvFilePath.ReadOnly = true;
  120. this.DgvFilePath.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  121. //
  122. // DgvFileSize
  123. //
  124. this.DgvFileSize.HeaderText = "大小";
  125. this.DgvFileSize.Name = "DgvFileSize";
  126. this.DgvFileSize.ReadOnly = true;
  127. this.DgvFileSize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  128. //
  129. // DgvFileVersionHistory
  130. //
  131. this.DgvFileVersionHistory.HeaderText = "历史版本";
  132. this.DgvFileVersionHistory.Name = "DgvFileVersionHistory";
  133. this.DgvFileVersionHistory.ReadOnly = true;
  134. this.DgvFileVersionHistory.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  135. //
  136. // DgvFileLastBackupTime
  137. //
  138. this.DgvFileLastBackupTime.HeaderText = "最后备份时间";
  139. this.DgvFileLastBackupTime.Name = "DgvFileLastBackupTime";
  140. this.DgvFileLastBackupTime.ReadOnly = true;
  141. this.DgvFileLastBackupTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  142. //
  143. // button1
  144. //
  145. this.button1.Location = new System.Drawing.Point(562, 6);
  146. this.button1.Name = "button1";
  147. this.button1.Size = new System.Drawing.Size(75, 23);
  148. this.button1.TabIndex = 3;
  149. this.button1.Text = "button1";
  150. this.button1.UseVisualStyleBackColor = true;
  151. //
  152. // textBox1
  153. //
  154. this.textBox1.Location = new System.Drawing.Point(356, 297);
  155. this.textBox1.Name = "textBox1";
  156. this.textBox1.Size = new System.Drawing.Size(281, 21);
  157. this.textBox1.TabIndex = 4;
  158. //
  159. // button2
  160. //
  161. this.button2.Location = new System.Drawing.Point(252, 295);
  162. this.button2.Name = "button2";
  163. this.button2.Size = new System.Drawing.Size(98, 23);
  164. this.button2.TabIndex = 5;
  165. this.button2.Text = "设置备份目录";
  166. this.button2.UseVisualStyleBackColor = true;
  167. //
  168. // BtDelPath
  169. //
  170. this.BtDelPath.Location = new System.Drawing.Point(99, 6);
  171. this.BtDelPath.Name = "BtDelPath";
  172. this.BtDelPath.Size = new System.Drawing.Size(75, 23);
  173. this.BtDelPath.TabIndex = 6;
  174. this.BtDelPath.Text = "删除目录";
  175. this.BtDelPath.UseVisualStyleBackColor = true;
  176. this.BtDelPath.Click += new System.EventHandler(this.BtDelPath_Click);
  177. //
  178. // FileBackupPartial
  179. //
  180. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  181. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  182. this.Controls.Add(this.BtDelPath);
  183. this.Controls.Add(this.button2);
  184. this.Controls.Add(this.textBox1);
  185. this.Controls.Add(this.button1);
  186. this.Controls.Add(this.DgvFile);
  187. this.Controls.Add(this.BtAddPath);
  188. this.Controls.Add(this.DgvPath);
  189. this.Name = "FileBackupPartial";
  190. this.Size = new System.Drawing.Size(646, 326);
  191. this.Load += new System.EventHandler(this.FileBackupPartial_Load);
  192. ((System.ComponentModel.ISupportInitialize)(this.DgvPath)).EndInit();
  193. ((System.ComponentModel.ISupportInitialize)(this.DgvFile)).EndInit();
  194. this.ResumeLayout(false);
  195. this.PerformLayout();
  196. }
  197. #endregion
  198. private System.Windows.Forms.DataGridView DgvPath;
  199. private System.Windows.Forms.Button BtAddPath;
  200. private System.Windows.Forms.DataGridView DgvFile;
  201. private System.Windows.Forms.Button button1;
  202. private System.Windows.Forms.TextBox textBox1;
  203. private System.Windows.Forms.Button button2;
  204. private System.Windows.Forms.Button BtDelPath;
  205. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathName;
  206. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathSize;
  207. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileName;
  208. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilePath;
  209. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileSize;
  210. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileVersionHistory;
  211. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileLastBackupTime;
  212. }
  213. }