1 |
namespace AnywhereTS |
2 |
{ |
3 |
partial class UninstallDialog |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Windows Form Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.groupBox1 = new System.Windows.Forms.GroupBox(); |
32 |
this.panel1 = new System.Windows.Forms.Panel(); |
33 |
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); |
34 |
this.btnOK = new System.Windows.Forms.Button(); |
35 |
this.btnCANCEL = new System.Windows.Forms.Button(); |
36 |
this.chkKeepDatabase = new System.Windows.Forms.CheckBox(); |
37 |
this.chkKeepApplicationSettings = new System.Windows.Forms.CheckBox(); |
38 |
this.chkKeepClientImages = new System.Windows.Forms.CheckBox(); |
39 |
this.groupBox1.SuspendLayout(); |
40 |
this.panel1.SuspendLayout(); |
41 |
this.flowLayoutPanel1.SuspendLayout(); |
42 |
this.SuspendLayout(); |
43 |
// |
44 |
// groupBox1 |
45 |
// |
46 |
this.groupBox1.Controls.Add(this.flowLayoutPanel1); |
47 |
this.groupBox1.Controls.Add(this.panel1); |
48 |
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; |
49 |
this.groupBox1.Location = new System.Drawing.Point(0, 0); |
50 |
this.groupBox1.Name = "groupBox1"; |
51 |
this.groupBox1.Size = new System.Drawing.Size(680, 274); |
52 |
this.groupBox1.TabIndex = 0; |
53 |
this.groupBox1.TabStop = false; |
54 |
this.groupBox1.Text = "groupBox1"; |
55 |
// |
56 |
// panel1 |
57 |
// |
58 |
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
59 |
this.panel1.Controls.Add(this.btnCANCEL); |
60 |
this.panel1.Controls.Add(this.btnOK); |
61 |
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; |
62 |
this.panel1.Location = new System.Drawing.Point(3, 219); |
63 |
this.panel1.Name = "panel1"; |
64 |
this.panel1.Size = new System.Drawing.Size(674, 52); |
65 |
this.panel1.TabIndex = 0; |
66 |
// |
67 |
// flowLayoutPanel1 |
68 |
// |
69 |
this.flowLayoutPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
70 |
this.flowLayoutPanel1.Controls.Add(this.chkKeepDatabase); |
71 |
this.flowLayoutPanel1.Controls.Add(this.chkKeepApplicationSettings); |
72 |
this.flowLayoutPanel1.Controls.Add(this.chkKeepClientImages); |
73 |
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; |
74 |
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 22); |
75 |
this.flowLayoutPanel1.Name = "flowLayoutPanel1"; |
76 |
this.flowLayoutPanel1.Size = new System.Drawing.Size(674, 197); |
77 |
this.flowLayoutPanel1.TabIndex = 1; |
78 |
// |
79 |
// btnOK |
80 |
// |
81 |
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
82 |
this.btnOK.Location = new System.Drawing.Point(341, 4); |
83 |
this.btnOK.Name = "btnOK"; |
84 |
this.btnOK.Size = new System.Drawing.Size(158, 43); |
85 |
this.btnOK.TabIndex = 0; |
86 |
this.btnOK.Text = "OK"; |
87 |
this.btnOK.UseVisualStyleBackColor = true; |
88 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
89 |
// |
90 |
// btnCANCEL |
91 |
// |
92 |
this.btnCANCEL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
93 |
this.btnCANCEL.Location = new System.Drawing.Point(505, 4); |
94 |
this.btnCANCEL.Name = "btnCANCEL"; |
95 |
this.btnCANCEL.Size = new System.Drawing.Size(158, 43); |
96 |
this.btnCANCEL.TabIndex = 1; |
97 |
this.btnCANCEL.Text = "CANCEL"; |
98 |
this.btnCANCEL.UseVisualStyleBackColor = true; |
99 |
this.btnCANCEL.Click += new System.EventHandler(this.btnCANCEL_Click); |
100 |
// |
101 |
// chkKeepDatabase |
102 |
// |
103 |
this.chkKeepDatabase.AutoSize = true; |
104 |
this.flowLayoutPanel1.SetFlowBreak(this.chkKeepDatabase, true); |
105 |
this.chkKeepDatabase.Location = new System.Drawing.Point(3, 3); |
106 |
this.chkKeepDatabase.Name = "chkKeepDatabase"; |
107 |
this.chkKeepDatabase.Size = new System.Drawing.Size(138, 22); |
108 |
this.chkKeepDatabase.TabIndex = 0; |
109 |
this.chkKeepDatabase.Text = "Keep Database"; |
110 |
this.chkKeepDatabase.UseVisualStyleBackColor = true; |
111 |
this.chkKeepDatabase.CheckedChanged += new System.EventHandler(this.chkKeepDatabase_CheckedChanged); |
112 |
// |
113 |
// chkKeepApplicationSettings |
114 |
// |
115 |
this.chkKeepApplicationSettings.AutoSize = true; |
116 |
this.flowLayoutPanel1.SetFlowBreak(this.chkKeepApplicationSettings, true); |
117 |
this.chkKeepApplicationSettings.Location = new System.Drawing.Point(3, 31); |
118 |
this.chkKeepApplicationSettings.Name = "chkKeepApplicationSettings"; |
119 |
this.chkKeepApplicationSettings.Size = new System.Drawing.Size(207, 22); |
120 |
this.chkKeepApplicationSettings.TabIndex = 1; |
121 |
this.chkKeepApplicationSettings.Text = "Keep Application Settings"; |
122 |
this.chkKeepApplicationSettings.UseVisualStyleBackColor = true; |
123 |
this.chkKeepApplicationSettings.CheckedChanged += new System.EventHandler(this.chkKeepApplicationSettings_CheckedChanged); |
124 |
// |
125 |
// chkKeepClientImages |
126 |
// |
127 |
this.chkKeepClientImages.AutoSize = true; |
128 |
this.flowLayoutPanel1.SetFlowBreak(this.chkKeepClientImages, true); |
129 |
this.chkKeepClientImages.Location = new System.Drawing.Point(3, 59); |
130 |
this.chkKeepClientImages.Name = "chkKeepClientImages"; |
131 |
this.chkKeepClientImages.Size = new System.Drawing.Size(164, 22); |
132 |
this.chkKeepClientImages.TabIndex = 2; |
133 |
this.chkKeepClientImages.Text = "Keep Client Images"; |
134 |
this.chkKeepClientImages.UseVisualStyleBackColor = true; |
135 |
this.chkKeepClientImages.CheckedChanged += new System.EventHandler(this.chkKeepClientImages_CheckedChanged); |
136 |
// |
137 |
// UninstallDialog |
138 |
// |
139 |
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F); |
140 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
141 |
this.ClientSize = new System.Drawing.Size(680, 274); |
142 |
this.Controls.Add(this.groupBox1); |
143 |
this.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
144 |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; |
145 |
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
146 |
this.Name = "UninstallDialog"; |
147 |
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.UninstallDialog_FormClosing); |
148 |
this.groupBox1.ResumeLayout(false); |
149 |
this.panel1.ResumeLayout(false); |
150 |
this.flowLayoutPanel1.ResumeLayout(false); |
151 |
this.flowLayoutPanel1.PerformLayout(); |
152 |
this.ResumeLayout(false); |
153 |
|
154 |
} |
155 |
|
156 |
#endregion |
157 |
|
158 |
private System.Windows.Forms.GroupBox groupBox1; |
159 |
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; |
160 |
private System.Windows.Forms.Panel panel1; |
161 |
private System.Windows.Forms.Button btnCANCEL; |
162 |
private System.Windows.Forms.Button btnOK; |
163 |
private System.Windows.Forms.CheckBox chkKeepDatabase; |
164 |
private System.Windows.Forms.CheckBox chkKeepApplicationSettings; |
165 |
private System.Windows.Forms.CheckBox chkKeepClientImages; |
166 |
|
167 |
} |
168 |
} |