FileBackupPartial.Designer.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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.BtAddFolder = 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.BtDelFolder = 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.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  50. this.DgvPath.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  51. this.DgvPathName,
  52. this.DgvPathSize});
  53. this.DgvPath.Location = new System.Drawing.Point(7, 38);
  54. this.DgvPath.Name = "DgvPath";
  55. this.DgvPath.ReadOnly = true;
  56. this.DgvPath.RowHeadersVisible = false;
  57. this.DgvPath.RowTemplate.Height = 23;
  58. this.DgvPath.Size = new System.Drawing.Size(214, 249);
  59. this.DgvPath.TabIndex = 0;
  60. //
  61. // DgvPathName
  62. //
  63. this.DgvPathName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  64. this.DgvPathName.HeaderText = "文件夹";
  65. this.DgvPathName.Name = "DgvPathName";
  66. this.DgvPathName.ReadOnly = true;
  67. //
  68. // DgvPathSize
  69. //
  70. this.DgvPathSize.HeaderText = "大小";
  71. this.DgvPathSize.Name = "DgvPathSize";
  72. this.DgvPathSize.ReadOnly = true;
  73. this.DgvPathSize.Width = 60;
  74. //
  75. // BtAddFolder
  76. //
  77. this.BtAddFolder.Location = new System.Drawing.Point(7, 6);
  78. this.BtAddFolder.Name = "BtAddFolder";
  79. this.BtAddFolder.Size = new System.Drawing.Size(75, 23);
  80. this.BtAddFolder.TabIndex = 1;
  81. this.BtAddFolder.Text = "添加目录";
  82. this.BtAddFolder.UseVisualStyleBackColor = true;
  83. this.BtAddFolder.Click += new System.EventHandler(this.BtAddFolder_Click);
  84. //
  85. // DgvFile
  86. //
  87. this.DgvFile.AllowUserToAddRows = false;
  88. this.DgvFile.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  89. this.DgvFile.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  90. this.DgvFileName,
  91. this.DgvFilePath,
  92. this.DgvFileSize,
  93. this.DgvFileVersionHistory,
  94. this.DgvFileLastBackupTime});
  95. this.DgvFile.Location = new System.Drawing.Point(252, 38);
  96. this.DgvFile.Name = "DgvFile";
  97. this.DgvFile.ReadOnly = true;
  98. this.DgvFile.RowHeadersVisible = false;
  99. this.DgvFile.RowTemplate.Height = 23;
  100. this.DgvFile.Size = new System.Drawing.Size(385, 249);
  101. this.DgvFile.TabIndex = 2;
  102. //
  103. // DgvFileName
  104. //
  105. this.DgvFileName.HeaderText = "文件名";
  106. this.DgvFileName.Name = "DgvFileName";
  107. this.DgvFileName.ReadOnly = true;
  108. //
  109. // DgvFilePath
  110. //
  111. this.DgvFilePath.HeaderText = "路径";
  112. this.DgvFilePath.Name = "DgvFilePath";
  113. this.DgvFilePath.ReadOnly = true;
  114. //
  115. // DgvFileSize
  116. //
  117. this.DgvFileSize.HeaderText = "大小";
  118. this.DgvFileSize.Name = "DgvFileSize";
  119. this.DgvFileSize.ReadOnly = true;
  120. //
  121. // DgvFileVersionHistory
  122. //
  123. this.DgvFileVersionHistory.HeaderText = "历史版本";
  124. this.DgvFileVersionHistory.Name = "DgvFileVersionHistory";
  125. this.DgvFileVersionHistory.ReadOnly = true;
  126. //
  127. // DgvFileLastBackupTime
  128. //
  129. this.DgvFileLastBackupTime.HeaderText = "最后备份时间";
  130. this.DgvFileLastBackupTime.Name = "DgvFileLastBackupTime";
  131. this.DgvFileLastBackupTime.ReadOnly = true;
  132. //
  133. // button1
  134. //
  135. this.button1.Location = new System.Drawing.Point(562, 6);
  136. this.button1.Name = "button1";
  137. this.button1.Size = new System.Drawing.Size(75, 23);
  138. this.button1.TabIndex = 3;
  139. this.button1.Text = "button1";
  140. this.button1.UseVisualStyleBackColor = true;
  141. //
  142. // textBox1
  143. //
  144. this.textBox1.Location = new System.Drawing.Point(356, 297);
  145. this.textBox1.Name = "textBox1";
  146. this.textBox1.Size = new System.Drawing.Size(281, 21);
  147. this.textBox1.TabIndex = 4;
  148. //
  149. // button2
  150. //
  151. this.button2.Location = new System.Drawing.Point(252, 295);
  152. this.button2.Name = "button2";
  153. this.button2.Size = new System.Drawing.Size(98, 23);
  154. this.button2.TabIndex = 5;
  155. this.button2.Text = "设置备份目录";
  156. this.button2.UseVisualStyleBackColor = true;
  157. //
  158. // BtDelFolder
  159. //
  160. this.BtDelFolder.Location = new System.Drawing.Point(99, 6);
  161. this.BtDelFolder.Name = "BtDelFolder";
  162. this.BtDelFolder.Size = new System.Drawing.Size(75, 23);
  163. this.BtDelFolder.TabIndex = 6;
  164. this.BtDelFolder.Text = "删除目录";
  165. this.BtDelFolder.UseVisualStyleBackColor = true;
  166. this.BtDelFolder.Click += new System.EventHandler(this.BtDelFolder_Click);
  167. //
  168. // FileBackupPartial
  169. //
  170. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  171. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  172. this.Controls.Add(this.BtDelFolder);
  173. this.Controls.Add(this.button2);
  174. this.Controls.Add(this.textBox1);
  175. this.Controls.Add(this.button1);
  176. this.Controls.Add(this.DgvFile);
  177. this.Controls.Add(this.BtAddFolder);
  178. this.Controls.Add(this.DgvPath);
  179. this.Name = "FileBackupPartial";
  180. this.Size = new System.Drawing.Size(646, 326);
  181. ((System.ComponentModel.ISupportInitialize)(this.DgvPath)).EndInit();
  182. ((System.ComponentModel.ISupportInitialize)(this.DgvFile)).EndInit();
  183. this.ResumeLayout(false);
  184. this.PerformLayout();
  185. }
  186. #endregion
  187. private System.Windows.Forms.DataGridView DgvPath;
  188. private System.Windows.Forms.Button BtAddFolder;
  189. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathName;
  190. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathSize;
  191. private System.Windows.Forms.DataGridView DgvFile;
  192. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileName;
  193. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilePath;
  194. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileSize;
  195. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileVersionHistory;
  196. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileLastBackupTime;
  197. private System.Windows.Forms.Button button1;
  198. private System.Windows.Forms.TextBox textBox1;
  199. private System.Windows.Forms.Button button2;
  200. private System.Windows.Forms.Button BtDelFolder;
  201. }
  202. }