backups.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. namespace Archives_Center
  2. {
  3. partial class backups
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(backups));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.button4 = new System.Windows.Forms.Button();
  34. this.listView1 = new System.Windows.Forms.ListView();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.BackColor = System.Drawing.Color.Transparent;
  42. this.label1.Location = new System.Drawing.Point(12, 9);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(68, 17);
  45. this.label1.TabIndex = 1;
  46. this.label1.Text = "有效备份:";
  47. //
  48. // button1
  49. //
  50. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  51. this.button1.Enabled = false;
  52. this.button1.Location = new System.Drawing.Point(93, 226);
  53. this.button1.Name = "button1";
  54. this.button1.Size = new System.Drawing.Size(75, 23);
  55. this.button1.TabIndex = 2;
  56. this.button1.Text = "还原";
  57. this.button1.UseVisualStyleBackColor = true;
  58. this.button1.Click += new System.EventHandler(this.button1_Click);
  59. //
  60. // button2
  61. //
  62. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  63. this.button2.Enabled = false;
  64. this.button2.Location = new System.Drawing.Point(174, 226);
  65. this.button2.Name = "button2";
  66. this.button2.Size = new System.Drawing.Size(75, 23);
  67. this.button2.TabIndex = 3;
  68. this.button2.Text = "删除";
  69. this.button2.UseVisualStyleBackColor = true;
  70. this.button2.Click += new System.EventHandler(this.button2_Click);
  71. //
  72. // button3
  73. //
  74. this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  75. this.button3.Location = new System.Drawing.Point(255, 226);
  76. this.button3.Name = "button3";
  77. this.button3.Size = new System.Drawing.Size(75, 23);
  78. this.button3.TabIndex = 4;
  79. this.button3.Text = "全部删除";
  80. this.button3.UseVisualStyleBackColor = true;
  81. this.button3.Click += new System.EventHandler(this.button3_Click);
  82. //
  83. // button4
  84. //
  85. this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  86. this.button4.Location = new System.Drawing.Point(12, 226);
  87. this.button4.Name = "button4";
  88. this.button4.Size = new System.Drawing.Size(75, 23);
  89. this.button4.TabIndex = 5;
  90. this.button4.Text = "创建备份";
  91. this.button4.UseVisualStyleBackColor = true;
  92. this.button4.Click += new System.EventHandler(this.button4_Click);
  93. //
  94. // listView1
  95. //
  96. this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
  97. this.listView1.HideSelection = false;
  98. this.listView1.Location = new System.Drawing.Point(12, 29);
  99. this.listView1.MultiSelect = false;
  100. this.listView1.Name = "listView1";
  101. this.listView1.Size = new System.Drawing.Size(360, 186);
  102. this.listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
  103. this.listView1.TabIndex = 6;
  104. this.listView1.UseCompatibleStateImageBehavior = false;
  105. this.listView1.View = System.Windows.Forms.View.Details;
  106. this.listView1.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView1_ItemSelectionChanged);
  107. //
  108. // label2
  109. //
  110. this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  111. this.label2.BackColor = System.Drawing.Color.Transparent;
  112. this.label2.Location = new System.Drawing.Point(86, 9);
  113. this.label2.Name = "label2";
  114. this.label2.Size = new System.Drawing.Size(286, 17);
  115. this.label2.TabIndex = 7;
  116. this.label2.Text = "label2";
  117. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  118. //
  119. // backups
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.BackgroundImage = global::Archives_Center.Properties.Resources._2_bc3d32a696895f78c19df6c717586a5d_1;
  124. this.ClientSize = new System.Drawing.Size(384, 261);
  125. this.Controls.Add(this.label2);
  126. this.Controls.Add(this.listView1);
  127. this.Controls.Add(this.button4);
  128. this.Controls.Add(this.button3);
  129. this.Controls.Add(this.button2);
  130. this.Controls.Add(this.button1);
  131. this.Controls.Add(this.label1);
  132. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  133. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  134. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  135. this.Margin = new System.Windows.Forms.Padding(4);
  136. this.Name = "backups";
  137. this.Text = "管理备份";
  138. this.ResumeLayout(false);
  139. this.PerformLayout();
  140. }
  141. #endregion
  142. private System.Windows.Forms.Label label1;
  143. private System.Windows.Forms.Button button1;
  144. private System.Windows.Forms.Button button2;
  145. private System.Windows.Forms.Button button3;
  146. private System.Windows.Forms.Button button4;
  147. private System.Windows.Forms.ListView listView1;
  148. private System.Windows.Forms.Label label2;
  149. }
  150. }