FrmOptionSet.Designer.cs
3.4 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
namespace ServiceManager
{
partial class FrmOptionSet
{
/// <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 Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.btnCancel = new System.Windows.Forms.Button();
this.cbAutoStart = new System.Windows.Forms.CheckBox();
this.btnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
this.btnCancel.Location = new System.Drawing.Point(152, 42);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(64, 23);
this.btnCancel.TabIndex = 6;
this.btnCancel.Text = "取消";
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// cbAutoStart
//
this.cbAutoStart.Location = new System.Drawing.Point(97, 12);
this.cbAutoStart.Name = "cbAutoStart";
this.cbAutoStart.Size = new System.Drawing.Size(104, 24);
this.cbAutoStart.TabIndex = 5;
this.cbAutoStart.Text = "开机自动运行";
this.cbAutoStart.Enter += new System.EventHandler(this.cbAutoStart_Enter);
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
this.btnOK.Location = new System.Drawing.Point(82, 42);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(64, 23);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "确定";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// FrmOptionSet
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(298, 79);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.cbAutoStart);
this.Controls.Add(this.btnOK);
this.Name = "FrmOptionSet";
this.Text = "Contamination Explorer 服务管理器选项";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox cbAutoStart;
private System.Windows.Forms.Button btnOK;
}
}