forked from FirelyTeam/Firely.Fhir.ValidationDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
258 lines (251 loc) · 13.8 KB
/
MainForm.Designer.cs
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
namespace Furore.Fhir.ValidationDemo
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.btnReload = new System.Windows.Forms.Button();
this.btnOpenProfileDir = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkShowTraceInfo = new System.Windows.Forms.CheckBox();
this.chkXsdValidation = new System.Windows.Forms.CheckBox();
this.btnValidate = new System.Windows.Forms.Button();
this.txtInstanceXml = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.txtOutcome = new System.Windows.Forms.TextBox();
this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.txtProfileDirectory = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.btnReload);
this.groupBox1.Controls.Add(this.btnOpenProfileDir);
this.groupBox1.Controls.Add(this.txtProfileDirectory);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(629, 147);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Profile source directory";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label2.Location = new System.Drawing.Point(6, 78);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(617, 33);
this.label2.TabIndex = 4;
this.label2.Text = "For performance reasons, profiles in this directory will not be re-scanned at eac" +
"h validation run. Press \'Reload\' to refresh the cached information the validator" +
" may have.";
//
// btnReload
//
this.btnReload.Location = new System.Drawing.Point(9, 112);
this.btnReload.Name = "btnReload";
this.btnReload.Size = new System.Drawing.Size(75, 23);
this.btnReload.TabIndex = 3;
this.btnReload.Text = "Reload";
this.btnReload.UseVisualStyleBackColor = true;
this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
//
// btnOpenProfileDir
//
this.btnOpenProfileDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnOpenProfileDir.Location = new System.Drawing.Point(548, 39);
this.btnOpenProfileDir.Name = "btnOpenProfileDir";
this.btnOpenProfileDir.Size = new System.Drawing.Size(75, 23);
this.btnOpenProfileDir.TabIndex = 2;
this.btnOpenProfileDir.Text = "Browse...";
this.btnOpenProfileDir.UseVisualStyleBackColor = true;
this.btnOpenProfileDir.Click += new System.EventHandler(this.btnOpenProfileDir_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(421, 13);
this.label1.TabIndex = 0;
this.label1.Text = "The validator will look for your profiles and other conformance resources in this" +
" directory:";
//
// groupBox2
//
this.groupBox2.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.groupBox2.Controls.Add(this.chkShowTraceInfo);
this.groupBox2.Controls.Add(this.chkXsdValidation);
this.groupBox2.Controls.Add(this.btnValidate);
this.groupBox2.Controls.Add(this.txtInstanceXml);
this.groupBox2.Location = new System.Drawing.Point(13, 175);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(627, 281);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Instance (xml)";
//
// chkShowTraceInfo
//
this.chkShowTraceInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.chkShowTraceInfo.AutoSize = true;
this.chkShowTraceInfo.Location = new System.Drawing.Point(258, 248);
this.chkShowTraceInfo.Name = "chkShowTraceInfo";
this.chkShowTraceInfo.Size = new System.Drawing.Size(181, 17);
this.chkShowTraceInfo.TabIndex = 7;
this.chkShowTraceInfo.Text = "Include trace information in result";
this.chkShowTraceInfo.UseVisualStyleBackColor = true;
//
// chkXsdValidation
//
this.chkXsdValidation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.chkXsdValidation.AutoSize = true;
this.chkXsdValidation.Location = new System.Drawing.Point(482, 247);
this.chkXsdValidation.Name = "chkXsdValidation";
this.chkXsdValidation.Size = new System.Drawing.Size(135, 17);
this.chkXsdValidation.TabIndex = 6;
this.chkXsdValidation.Text = "Also use Xsd validation";
this.chkXsdValidation.UseVisualStyleBackColor = true;
//
// btnValidate
//
this.btnValidate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnValidate.Location = new System.Drawing.Point(9, 243);
this.btnValidate.Name = "btnValidate";
this.btnValidate.Size = new System.Drawing.Size(75, 23);
this.btnValidate.TabIndex = 5;
this.btnValidate.Text = "Validate!";
this.btnValidate.UseVisualStyleBackColor = true;
this.btnValidate.Click += new System.EventHandler(this.btnValidate_Click);
//
// txtInstanceXml
//
this.txtInstanceXml.AcceptsReturn = true;
this.txtInstanceXml.AcceptsTab = true;
this.txtInstanceXml.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.txtInstanceXml.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Furore.Fhir.ValidationDemo.Properties.Settings.Default, "InstanceXml", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtInstanceXml.Location = new System.Drawing.Point(9, 23);
this.txtInstanceXml.Multiline = true;
this.txtInstanceXml.Name = "txtInstanceXml";
this.txtInstanceXml.Size = new System.Drawing.Size(608, 208);
this.txtInstanceXml.TabIndex = 0;
this.txtInstanceXml.Text = global::Furore.Fhir.ValidationDemo.Properties.Settings.Default.InstanceXml;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.txtOutcome);
this.groupBox3.Location = new System.Drawing.Point(12, 462);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(627, 209);
this.groupBox3.TabIndex = 2;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Last Validation results";
//
// txtOutcome
//
this.txtOutcome.AcceptsTab = true;
this.txtOutcome.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.txtOutcome.Location = new System.Drawing.Point(10, 20);
this.txtOutcome.Multiline = true;
this.txtOutcome.Name = "txtOutcome";
this.txtOutcome.ReadOnly = true;
this.txtOutcome.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtOutcome.Size = new System.Drawing.Size(608, 172);
this.txtOutcome.TabIndex = 0;
//
// folderBrowserDialog
//
this.folderBrowserDialog.Description = "Select a folder where this application can find your profiles to validate against" +
".";
this.folderBrowserDialog.RootFolder = System.Environment.SpecialFolder.MyDocuments;
this.folderBrowserDialog.ShowNewFolderButton = false;
//
// txtProfileDirectory
//
this.txtProfileDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtProfileDirectory.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Furore.Fhir.ValidationDemo.Properties.Settings.Default, "ProfileSourceDirectory", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtProfileDirectory.Location = new System.Drawing.Point(6, 42);
this.txtProfileDirectory.Name = "txtProfileDirectory";
this.txtProfileDirectory.Size = new System.Drawing.Size(536, 20);
this.txtProfileDirectory.TabIndex = 1;
this.txtProfileDirectory.Text = global::Furore.Fhir.ValidationDemo.Properties.Settings.Default.ProfileSourceDirectory;
this.txtProfileDirectory.TextChanged += new System.EventHandler(this.txtProfileDirectory_TextChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(653, 681);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "MainForm";
this.Text = ".NET Profile Validation Demo 0.1";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
this.Load += new System.EventHandler(this.MainForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnReload;
private System.Windows.Forms.Button btnOpenProfileDir;
private System.Windows.Forms.TextBox txtProfileDirectory;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox chkXsdValidation;
private System.Windows.Forms.Button btnValidate;
private System.Windows.Forms.TextBox txtInstanceXml;
private System.Windows.Forms.CheckBox chkShowTraceInfo;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.TextBox txtOutcome;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
}
}