FileBackupPartial.Designer.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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.BtDelPath = new System.Windows.Forms.Button();
  39. ((System.ComponentModel.ISupportInitialize)(this.DgvPath)).BeginInit();
  40. ((System.ComponentModel.ISupportInitialize)(this.DgvFile)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // DgvPath
  44. //
  45. this.DgvPath.AllowUserToAddRows = false;
  46. this.DgvPath.AllowUserToDeleteRows = false;
  47. this.DgvPath.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  48. this.DgvPath.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  49. this.DgvPathName,
  50. this.DgvPathSize});
  51. this.DgvPath.Location = new System.Drawing.Point(7, 38);
  52. this.DgvPath.Name = "DgvPath";
  53. this.DgvPath.ReadOnly = true;
  54. this.DgvPath.RowHeadersVisible = false;
  55. this.DgvPath.RowTemplate.Height = 23;
  56. this.DgvPath.Size = new System.Drawing.Size(214, 249);
  57. this.DgvPath.TabIndex = 0;
  58. this.DgvPath.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvPath_CellDoubleClick);
  59. //
  60. // DgvPathName
  61. //
  62. this.DgvPathName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  63. this.DgvPathName.HeaderText = "文件夹";
  64. this.DgvPathName.Name = "DgvPathName";
  65. this.DgvPathName.ReadOnly = true;
  66. this.DgvPathName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  67. //
  68. // DgvPathSize
  69. //
  70. this.DgvPathSize.HeaderText = "大小";
  71. this.DgvPathSize.Name = "DgvPathSize";
  72. this.DgvPathSize.ReadOnly = true;
  73. this.DgvPathSize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  74. this.DgvPathSize.Width = 60;
  75. //
  76. // BtAddPath
  77. //
  78. this.BtAddPath.Location = new System.Drawing.Point(7, 6);
  79. this.BtAddPath.Name = "BtAddPath";
  80. this.BtAddPath.Size = new System.Drawing.Size(75, 23);
  81. this.BtAddPath.TabIndex = 1;
  82. this.BtAddPath.Text = "添加目录";
  83. this.BtAddPath.UseVisualStyleBackColor = true;
  84. this.BtAddPath.Click += new System.EventHandler(this.BtAddPath_Click);
  85. //
  86. // DgvFile
  87. //
  88. this.DgvFile.AllowUserToAddRows = false;
  89. this.DgvFile.AllowUserToDeleteRows = false;
  90. this.DgvFile.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  91. this.DgvFile.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  92. this.DgvFileName,
  93. this.DgvFilePath,
  94. this.DgvFileSize,
  95. this.DgvFileVersionHistory,
  96. this.DgvFileLastBackupTime});
  97. this.DgvFile.Location = new System.Drawing.Point(252, 38);
  98. this.DgvFile.Name = "DgvFile";
  99. this.DgvFile.ReadOnly = true;
  100. this.DgvFile.RowHeadersVisible = false;
  101. this.DgvFile.RowTemplate.Height = 23;
  102. this.DgvFile.Size = new System.Drawing.Size(385, 249);
  103. this.DgvFile.TabIndex = 2;
  104. //
  105. // DgvFileName
  106. //
  107. this.DgvFileName.HeaderText = "文件名";
  108. this.DgvFileName.Name = "DgvFileName";
  109. this.DgvFileName.ReadOnly = true;
  110. this.DgvFileName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  111. //
  112. // DgvFilePath
  113. //
  114. this.DgvFilePath.HeaderText = "路径";
  115. this.DgvFilePath.Name = "DgvFilePath";
  116. this.DgvFilePath.ReadOnly = true;
  117. this.DgvFilePath.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  118. //
  119. // DgvFileSize
  120. //
  121. this.DgvFileSize.HeaderText = "大小";
  122. this.DgvFileSize.Name = "DgvFileSize";
  123. this.DgvFileSize.ReadOnly = true;
  124. this.DgvFileSize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  125. //
  126. // DgvFileVersionHistory
  127. //
  128. this.DgvFileVersionHistory.HeaderText = "历史版本";
  129. this.DgvFileVersionHistory.Name = "DgvFileVersionHistory";
  130. this.DgvFileVersionHistory.ReadOnly = true;
  131. this.DgvFileVersionHistory.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  132. //
  133. // DgvFileLastBackupTime
  134. //
  135. this.DgvFileLastBackupTime.HeaderText = "最后备份时间";
  136. this.DgvFileLastBackupTime.Name = "DgvFileLastBackupTime";
  137. this.DgvFileLastBackupTime.ReadOnly = true;
  138. this.DgvFileLastBackupTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  139. //
  140. // BtDelPath
  141. //
  142. this.BtDelPath.Location = new System.Drawing.Point(99, 6);
  143. this.BtDelPath.Name = "BtDelPath";
  144. this.BtDelPath.Size = new System.Drawing.Size(75, 23);
  145. this.BtDelPath.TabIndex = 6;
  146. this.BtDelPath.Text = "删除目录";
  147. this.BtDelPath.UseVisualStyleBackColor = true;
  148. this.BtDelPath.Click += new System.EventHandler(this.BtDelPath_Click);
  149. //
  150. // FileBackupPartial
  151. //
  152. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  153. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  154. this.Controls.Add(this.BtDelPath);
  155. this.Controls.Add(this.DgvFile);
  156. this.Controls.Add(this.BtAddPath);
  157. this.Controls.Add(this.DgvPath);
  158. this.Name = "FileBackupPartial";
  159. this.Size = new System.Drawing.Size(646, 326);
  160. this.Load += new System.EventHandler(this.FileBackupPartial_Load);
  161. ((System.ComponentModel.ISupportInitialize)(this.DgvPath)).EndInit();
  162. ((System.ComponentModel.ISupportInitialize)(this.DgvFile)).EndInit();
  163. this.ResumeLayout(false);
  164. }
  165. #endregion
  166. private System.Windows.Forms.DataGridView DgvPath;
  167. private System.Windows.Forms.Button BtAddPath;
  168. private System.Windows.Forms.DataGridView DgvFile;
  169. private System.Windows.Forms.Button BtDelPath;
  170. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathName;
  171. private System.Windows.Forms.DataGridViewTextBoxColumn DgvPathSize;
  172. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileName;
  173. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilePath;
  174. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileSize;
  175. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileVersionHistory;
  176. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFileLastBackupTime;
  177. }
  178. }