FileRestoreForm.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.BtClose = new System.Windows.Forms.Button();
  29. this.DgvFiles = new System.Windows.Forms.DataGridView();
  30. this.DgvFilesLastWriteTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.DgvFilesSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. ((System.ComponentModel.ISupportInitialize)(this.DgvFiles)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // BtClose
  36. //
  37. this.BtClose.FlatAppearance.BorderSize = 0;
  38. this.BtClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  39. this.BtClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  40. this.BtClose.ForeColor = System.Drawing.Color.White;
  41. this.BtClose.Location = new System.Drawing.Point(379, 12);
  42. this.BtClose.Name = "BtClose";
  43. this.BtClose.Size = new System.Drawing.Size(30, 23);
  44. this.BtClose.TabIndex = 20;
  45. this.BtClose.Text = "X";
  46. this.BtClose.UseVisualStyleBackColor = true;
  47. this.BtClose.Click += new System.EventHandler(this.BtClose_Click);
  48. //
  49. // DgvFiles
  50. //
  51. this.DgvFiles.AllowUserToAddRows = false;
  52. this.DgvFiles.AllowUserToDeleteRows = false;
  53. this.DgvFiles.AllowUserToResizeColumns = false;
  54. this.DgvFiles.AllowUserToResizeRows = false;
  55. this.DgvFiles.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  56. this.DgvFiles.BackgroundColor = System.Drawing.Color.White;
  57. this.DgvFiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  58. this.DgvFiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  59. this.DgvFilesLastWriteTime,
  60. this.DgvFilesSize});
  61. this.DgvFiles.GridColor = System.Drawing.Color.Silver;
  62. this.DgvFiles.Location = new System.Drawing.Point(36, 54);
  63. this.DgvFiles.Name = "DgvFiles";
  64. this.DgvFiles.ReadOnly = true;
  65. this.DgvFiles.RowHeadersVisible = false;
  66. this.DgvFiles.RowTemplate.Height = 23;
  67. this.DgvFiles.Size = new System.Drawing.Size(352, 150);
  68. this.DgvFiles.TabIndex = 21;
  69. //
  70. // DgvFilesLastWriteTime
  71. //
  72. this.DgvFilesLastWriteTime.HeaderText = "最后修改时间";
  73. this.DgvFilesLastWriteTime.Name = "DgvFilesLastWriteTime";
  74. this.DgvFilesLastWriteTime.ReadOnly = true;
  75. //
  76. // DgvFilesSize
  77. //
  78. this.DgvFilesSize.HeaderText = "文件大小";
  79. this.DgvFilesSize.Name = "DgvFilesSize";
  80. this.DgvFilesSize.ReadOnly = true;
  81. //
  82. // FileRestoreForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(43)))), ((int)(((byte)(54)))));
  87. this.ClientSize = new System.Drawing.Size(421, 282);
  88. this.Controls.Add(this.DgvFiles);
  89. this.Controls.Add(this.BtClose);
  90. this.Name = "FileRestoreForm";
  91. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  92. this.Text = "FileRestoreForm";
  93. this.Load += new System.EventHandler(this.FileRestoreForm_Load);
  94. ((System.ComponentModel.ISupportInitialize)(this.DgvFiles)).EndInit();
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.Button BtClose;
  99. private System.Windows.Forms.DataGridView DgvFiles;
  100. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilesLastWriteTime;
  101. private System.Windows.Forms.DataGridViewTextBoxColumn DgvFilesSize;
  102. }
  103. }