AdvanceConfigEdit.Designer.cs
5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
namespace ConfigHelper
{
partial class AdvanceConfigEdit
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
this.btn_save = new System.Windows.Forms.Button();
this.cb_backuplist = new System.Windows.Forms.ComboBox();
this.btn_backup = new System.Windows.Forms.Button();
this.btn_restore = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// propertyGrid1
//
this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.propertyGrid1.Location = new System.Drawing.Point(0, 0);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(614, 374);
this.propertyGrid1.TabIndex = 0;
//
// btn_save
//
this.btn_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_save.Location = new System.Drawing.Point(526, 380);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(88, 42);
this.btn_save.TabIndex = 1;
this.btn_save.Text = "Save";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
//
// cb_backuplist
//
this.cb_backuplist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cb_backuplist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_backuplist.FormattingEnabled = true;
this.cb_backuplist.Location = new System.Drawing.Point(94, 392);
this.cb_backuplist.Name = "cb_backuplist";
this.cb_backuplist.Size = new System.Drawing.Size(144, 20);
this.cb_backuplist.TabIndex = 2;
//
// btn_backup
//
this.btn_backup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btn_backup.Location = new System.Drawing.Point(0, 380);
this.btn_backup.Name = "btn_backup";
this.btn_backup.Size = new System.Drawing.Size(88, 42);
this.btn_backup.TabIndex = 1;
this.btn_backup.Text = "Backup";
this.btn_backup.UseVisualStyleBackColor = true;
this.btn_backup.Click += new System.EventHandler(this.btn_backup_Click);
//
// btn_restore
//
this.btn_restore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btn_restore.Location = new System.Drawing.Point(244, 380);
this.btn_restore.Name = "btn_restore";
this.btn_restore.Size = new System.Drawing.Size(88, 42);
this.btn_restore.TabIndex = 1;
this.btn_restore.Text = "Restore";
this.btn_restore.UseVisualStyleBackColor = true;
this.btn_restore.Click += new System.EventHandler(this.btn_restore_Click);
//
// AdvanceConfigEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.cb_backuplist);
this.Controls.Add(this.btn_restore);
this.Controls.Add(this.btn_backup);
this.Controls.Add(this.btn_save);
this.Controls.Add(this.propertyGrid1);
this.Name = "AdvanceConfigEdit";
this.Size = new System.Drawing.Size(614, 422);
this.Load += new System.EventHandler(this.AdvanceConfigEdit_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.Button btn_save;
private System.Windows.Forms.ComboBox cb_backuplist;
private System.Windows.Forms.Button btn_backup;
private System.Windows.Forms.Button btn_restore;
}
}