~dangarner/xibo/107-client

« back to all changes in this revision

Viewing changes to client/dotNET/OptionForm.Designer.cs

  • Committer: Dan Garner
  • Date: 2010-02-14 16:55:54 UTC
  • Revision ID: dan@xibo.org.uk-20100214165554-sgkth4407uftpyhg
[dotnetclient] Altered the options form to allow the setting of scrollStepAmount

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
            this.buttonSaveSettings = new System.Windows.Forms.Button();
36
36
            this.tabControl1 = new System.Windows.Forms.TabControl();
37
37
            this.tabPage1 = new System.Windows.Forms.TabPage();
38
 
            this.checkBoxStats = new System.Windows.Forms.CheckBox();
39
 
            this.checkBoxPowerPoint = new System.Windows.Forms.CheckBox();
 
38
            this.label9 = new System.Windows.Forms.Label();
40
39
            this.buttonReset = new System.Windows.Forms.Button();
41
40
            this.buttonLibrary = new System.Windows.Forms.Button();
42
41
            this.numericUpDownCollect = new System.Windows.Forms.NumericUpDown();
43
42
            this.label5 = new System.Windows.Forms.Label();
44
 
            this.textBoxXmdsUri = new System.Windows.Forms.TextBox();
45
 
            this.textBoxServerKey = new System.Windows.Forms.TextBox();
46
 
            this.textBoxLibraryPath = new System.Windows.Forms.TextBox();
47
43
            this.tabPage3 = new System.Windows.Forms.TabPage();
48
44
            this.label8 = new System.Windows.Forms.Label();
49
45
            this.buttonProxySave = new System.Windows.Forms.Button();
50
46
            this.groupBox2 = new System.Windows.Forms.GroupBox();
51
 
            this.textBoxProxyDomain = new System.Windows.Forms.TextBox();
52
 
            this.maskedTextBoxProxyPass = new System.Windows.Forms.MaskedTextBox();
53
 
            this.textBoxProxyUser = new System.Windows.Forms.TextBox();
54
47
            this.labelProxyDomain = new System.Windows.Forms.Label();
55
48
            this.labelProxyPass = new System.Windows.Forms.Label();
56
49
            this.labelProxyUser = new System.Windows.Forms.Label();
61
54
            this.label6 = new System.Windows.Forms.Label();
62
55
            this.buttonRegister = new System.Windows.Forms.Button();
63
56
            this.label4 = new System.Windows.Forms.Label();
64
 
            this.labelXmdsUrl = new System.Windows.Forms.Label();
65
 
            this.textBoxDisplayName = new System.Windows.Forms.TextBox();
66
57
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
67
58
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
68
59
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
70
61
            this.aboutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
71
62
            this.onlineHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
72
63
            this.folderBrowserLibrary = new System.Windows.Forms.FolderBrowserDialog();
 
64
            this.label10 = new System.Windows.Forms.Label();
 
65
            this.nupScrollStepAmount = new System.Windows.Forms.NumericUpDown();
 
66
            this.tbHardwareKey = new System.Windows.Forms.TextBox();
 
67
            this.checkBoxStats = new System.Windows.Forms.CheckBox();
 
68
            this.checkBoxPowerPoint = new System.Windows.Forms.CheckBox();
 
69
            this.textBoxXmdsUri = new System.Windows.Forms.TextBox();
 
70
            this.textBoxServerKey = new System.Windows.Forms.TextBox();
 
71
            this.textBoxLibraryPath = new System.Windows.Forms.TextBox();
 
72
            this.textBoxProxyDomain = new System.Windows.Forms.TextBox();
 
73
            this.maskedTextBoxProxyPass = new System.Windows.Forms.MaskedTextBox();
 
74
            this.textBoxProxyUser = new System.Windows.Forms.TextBox();
 
75
            this.labelXmdsUrl = new System.Windows.Forms.Label();
 
76
            this.textBoxDisplayName = new System.Windows.Forms.TextBox();
73
77
            this.xmds1 = new XiboClient.xmds.xmds();
74
 
            this.label9 = new System.Windows.Forms.Label();
75
 
            this.tbHardwareKey = new System.Windows.Forms.TextBox();
76
78
            this.tabControl1.SuspendLayout();
77
79
            this.tabPage1.SuspendLayout();
78
80
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownCollect)).BeginInit();
80
82
            this.groupBox2.SuspendLayout();
81
83
            this.tabPage2.SuspendLayout();
82
84
            this.menuStrip1.SuspendLayout();
 
85
            ((System.ComponentModel.ISupportInitialize)(this.nupScrollStepAmount)).BeginInit();
83
86
            this.SuspendLayout();
84
87
            // 
85
88
            // label1
133
136
            // 
134
137
            // tabPage1
135
138
            // 
 
139
            this.tabPage1.Controls.Add(this.nupScrollStepAmount);
 
140
            this.tabPage1.Controls.Add(this.label10);
136
141
            this.tabPage1.Controls.Add(this.tbHardwareKey);
137
142
            this.tabPage1.Controls.Add(this.label9);
138
143
            this.tabPage1.Controls.Add(this.checkBoxStats);
156
161
            this.tabPage1.Text = "Xibo Settings";
157
162
            this.tabPage1.UseVisualStyleBackColor = true;
158
163
            // 
159
 
            // checkBoxStats
160
 
            // 
161
 
            this.checkBoxStats.AutoSize = true;
162
 
            this.checkBoxStats.Checked = global::XiboClient.Properties.Settings.Default.statsEnabled;
163
 
            this.checkBoxStats.CheckState = System.Windows.Forms.CheckState.Checked;
164
 
            this.checkBoxStats.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::XiboClient.Properties.Settings.Default, "statsEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
165
 
            this.checkBoxStats.Location = new System.Drawing.Point(184, 182);
166
 
            this.checkBoxStats.Name = "checkBoxStats";
167
 
            this.checkBoxStats.Size = new System.Drawing.Size(104, 17);
168
 
            this.checkBoxStats.TabIndex = 0;
169
 
            this.checkBoxStats.Text = "Enable Statistics";
170
 
            this.checkBoxStats.UseVisualStyleBackColor = true;
171
 
            this.checkBoxStats.CheckedChanged += new System.EventHandler(this.checkBoxStats_CheckedChanged);
172
 
            // 
173
 
            // checkBoxPowerPoint
174
 
            // 
175
 
            this.checkBoxPowerPoint.AutoSize = true;
176
 
            this.checkBoxPowerPoint.Checked = global::XiboClient.Properties.Settings.Default.powerpointEnabled;
177
 
            this.checkBoxPowerPoint.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::XiboClient.Properties.Settings.Default, "powerpointEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
178
 
            this.checkBoxPowerPoint.Location = new System.Drawing.Point(184, 159);
179
 
            this.checkBoxPowerPoint.Name = "checkBoxPowerPoint";
180
 
            this.checkBoxPowerPoint.Size = new System.Drawing.Size(116, 17);
181
 
            this.checkBoxPowerPoint.TabIndex = 12;
182
 
            this.checkBoxPowerPoint.Text = "Enable PowerPoint";
183
 
            this.checkBoxPowerPoint.UseVisualStyleBackColor = true;
184
 
            this.checkBoxPowerPoint.CheckedChanged += new System.EventHandler(this.checkBoxPowerPoint_CheckedChanged);
 
164
            // label9
 
165
            // 
 
166
            this.label9.AutoSize = true;
 
167
            this.label9.Location = new System.Drawing.Point(6, 122);
 
168
            this.label9.Name = "label9";
 
169
            this.label9.Size = new System.Drawing.Size(147, 13);
 
170
            this.label9.TabIndex = 13;
 
171
            this.label9.Text = "The Unique Key for this Client";
185
172
            // 
186
173
            // buttonReset
187
174
            // 
235
222
            this.label5.TabIndex = 8;
236
223
            this.label5.Text = "The collection interval for content";
237
224
            // 
238
 
            // textBoxXmdsUri
239
 
            // 
240
 
            this.textBoxXmdsUri.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "serverURI", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
241
 
            this.textBoxXmdsUri.Location = new System.Drawing.Point(184, 11);
242
 
            this.textBoxXmdsUri.Name = "textBoxXmdsUri";
243
 
            this.textBoxXmdsUri.Size = new System.Drawing.Size(237, 20);
244
 
            this.textBoxXmdsUri.TabIndex = 0;
245
 
            this.textBoxXmdsUri.Text = global::XiboClient.Properties.Settings.Default.serverURI;
246
 
            // 
247
 
            // textBoxServerKey
248
 
            // 
249
 
            this.textBoxServerKey.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ServerKey", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
250
 
            this.textBoxServerKey.Location = new System.Drawing.Point(184, 38);
251
 
            this.textBoxServerKey.Name = "textBoxServerKey";
252
 
            this.textBoxServerKey.Size = new System.Drawing.Size(237, 20);
253
 
            this.textBoxServerKey.TabIndex = 2;
254
 
            this.textBoxServerKey.Text = global::XiboClient.Properties.Settings.Default.ServerKey;
255
 
            // 
256
 
            // textBoxLibraryPath
257
 
            // 
258
 
            this.textBoxLibraryPath.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "LibraryPath", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
259
 
            this.textBoxLibraryPath.Location = new System.Drawing.Point(184, 65);
260
 
            this.textBoxLibraryPath.Name = "textBoxLibraryPath";
261
 
            this.textBoxLibraryPath.Size = new System.Drawing.Size(156, 20);
262
 
            this.textBoxLibraryPath.TabIndex = 4;
263
 
            this.textBoxLibraryPath.Text = global::XiboClient.Properties.Settings.Default.LibraryPath;
264
 
            // 
265
225
            // tabPage3
266
226
            // 
267
227
            this.tabPage3.Controls.Add(this.label8);
310
270
            this.groupBox2.TabStop = false;
311
271
            this.groupBox2.Text = "Authentication Information";
312
272
            // 
313
 
            // textBoxProxyDomain
314
 
            // 
315
 
            this.textBoxProxyDomain.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyDomain", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
316
 
            this.textBoxProxyDomain.Location = new System.Drawing.Point(99, 95);
317
 
            this.textBoxProxyDomain.Name = "textBoxProxyDomain";
318
 
            this.textBoxProxyDomain.Size = new System.Drawing.Size(171, 20);
319
 
            this.textBoxProxyDomain.TabIndex = 7;
320
 
            this.textBoxProxyDomain.Text = global::XiboClient.Properties.Settings.Default.ProxyDomain;
321
 
            // 
322
 
            // maskedTextBoxProxyPass
323
 
            // 
324
 
            this.maskedTextBoxProxyPass.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyPassword", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
325
 
            this.maskedTextBoxProxyPass.Location = new System.Drawing.Point(99, 67);
326
 
            this.maskedTextBoxProxyPass.Name = "maskedTextBoxProxyPass";
327
 
            this.maskedTextBoxProxyPass.Size = new System.Drawing.Size(171, 20);
328
 
            this.maskedTextBoxProxyPass.TabIndex = 5;
329
 
            this.maskedTextBoxProxyPass.Text = global::XiboClient.Properties.Settings.Default.ProxyPassword;
330
 
            this.maskedTextBoxProxyPass.UseSystemPasswordChar = true;
331
 
            // 
332
 
            // textBoxProxyUser
333
 
            // 
334
 
            this.textBoxProxyUser.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyUser", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
335
 
            this.textBoxProxyUser.Location = new System.Drawing.Point(99, 41);
336
 
            this.textBoxProxyUser.Name = "textBoxProxyUser";
337
 
            this.textBoxProxyUser.Size = new System.Drawing.Size(171, 20);
338
 
            this.textBoxProxyUser.TabIndex = 3;
339
 
            this.textBoxProxyUser.Text = global::XiboClient.Properties.Settings.Default.ProxyUser;
340
 
            // 
341
273
            // labelProxyDomain
342
274
            // 
343
275
            this.labelProxyDomain.AutoSize = true;
438
370
            this.label4.TabIndex = 1;
439
371
            this.label4.Text = "Display Name";
440
372
            // 
441
 
            // labelXmdsUrl
442
 
            // 
443
 
            this.labelXmdsUrl.AutoSize = true;
444
 
            this.labelXmdsUrl.Location = new System.Drawing.Point(139, 10);
445
 
            this.labelXmdsUrl.Name = "labelXmdsUrl";
446
 
            this.labelXmdsUrl.Size = new System.Drawing.Size(193, 13);
447
 
            this.labelXmdsUrl.TabIndex = 3;
448
 
            this.labelXmdsUrl.Text = global::XiboClient.Properties.Settings.Default.XiboClient_xmds_xmds;
449
 
            // 
450
 
            // textBoxDisplayName
451
 
            // 
452
 
            this.textBoxDisplayName.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "displayName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
453
 
            this.textBoxDisplayName.Location = new System.Drawing.Point(142, 37);
454
 
            this.textBoxDisplayName.Name = "textBoxDisplayName";
455
 
            this.textBoxDisplayName.Size = new System.Drawing.Size(264, 20);
456
 
            this.textBoxDisplayName.TabIndex = 0;
457
 
            this.textBoxDisplayName.Text = global::XiboClient.Properties.Settings.Default.displayName;
458
 
            // 
459
373
            // menuStrip1
460
374
            // 
461
375
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
505
419
            this.onlineHelpToolStripMenuItem.Text = "Online Help";
506
420
            this.onlineHelpToolStripMenuItem.Click += new System.EventHandler(this.onlineHelpToolStripMenuItem_Click);
507
421
            // 
508
 
            // xmds1
509
 
            // 
510
 
            this.xmds1.Credentials = null;
511
 
            this.xmds1.Url = "http://localhost/Xibo/server/xmds.php";
512
 
            this.xmds1.UseDefaultCredentials = false;
513
 
            // 
514
 
            // label9
515
 
            // 
516
 
            this.label9.AutoSize = true;
517
 
            this.label9.Location = new System.Drawing.Point(6, 119);
518
 
            this.label9.Name = "label9";
519
 
            this.label9.Size = new System.Drawing.Size(147, 13);
520
 
            this.label9.TabIndex = 13;
521
 
            this.label9.Text = "The Unique Key for this Client";
 
422
            // label10
 
423
            // 
 
424
            this.label10.AutoSize = true;
 
425
            this.label10.Location = new System.Drawing.Point(6, 147);
 
426
            this.label10.Name = "label10";
 
427
            this.label10.Size = new System.Drawing.Size(117, 13);
 
428
            this.label10.TabIndex = 15;
 
429
            this.label10.Text = "Scroll Step Amount (px)";
 
430
            // 
 
431
            // nupScrollStepAmount
 
432
            // 
 
433
            this.nupScrollStepAmount.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::XiboClient.Properties.Settings.Default, "scrollStepAmount", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
434
            this.nupScrollStepAmount.Location = new System.Drawing.Point(184, 145);
 
435
            this.nupScrollStepAmount.Minimum = new decimal(new int[] {
 
436
            1,
 
437
            0,
 
438
            0,
 
439
            0});
 
440
            this.nupScrollStepAmount.Name = "nupScrollStepAmount";
 
441
            this.nupScrollStepAmount.Size = new System.Drawing.Size(76, 20);
 
442
            this.nupScrollStepAmount.TabIndex = 16;
 
443
            this.nupScrollStepAmount.Value = global::XiboClient.Properties.Settings.Default.scrollStepAmount;
522
444
            // 
523
445
            // tbHardwareKey
524
446
            // 
529
451
            this.tbHardwareKey.TabIndex = 14;
530
452
            this.tbHardwareKey.Text = global::XiboClient.Properties.Settings.Default.hardwareKey;
531
453
            // 
 
454
            // checkBoxStats
 
455
            // 
 
456
            this.checkBoxStats.AutoSize = true;
 
457
            this.checkBoxStats.Checked = global::XiboClient.Properties.Settings.Default.statsEnabled;
 
458
            this.checkBoxStats.CheckState = System.Windows.Forms.CheckState.Checked;
 
459
            this.checkBoxStats.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::XiboClient.Properties.Settings.Default, "statsEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
460
            this.checkBoxStats.Location = new System.Drawing.Point(184, 204);
 
461
            this.checkBoxStats.Name = "checkBoxStats";
 
462
            this.checkBoxStats.Size = new System.Drawing.Size(104, 17);
 
463
            this.checkBoxStats.TabIndex = 0;
 
464
            this.checkBoxStats.Text = "Enable Statistics";
 
465
            this.checkBoxStats.UseVisualStyleBackColor = true;
 
466
            this.checkBoxStats.CheckedChanged += new System.EventHandler(this.checkBoxStats_CheckedChanged);
 
467
            // 
 
468
            // checkBoxPowerPoint
 
469
            // 
 
470
            this.checkBoxPowerPoint.AutoSize = true;
 
471
            this.checkBoxPowerPoint.Checked = global::XiboClient.Properties.Settings.Default.powerpointEnabled;
 
472
            this.checkBoxPowerPoint.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::XiboClient.Properties.Settings.Default, "powerpointEnabled", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
473
            this.checkBoxPowerPoint.Location = new System.Drawing.Point(184, 181);
 
474
            this.checkBoxPowerPoint.Name = "checkBoxPowerPoint";
 
475
            this.checkBoxPowerPoint.Size = new System.Drawing.Size(116, 17);
 
476
            this.checkBoxPowerPoint.TabIndex = 12;
 
477
            this.checkBoxPowerPoint.Text = "Enable PowerPoint";
 
478
            this.checkBoxPowerPoint.UseVisualStyleBackColor = true;
 
479
            this.checkBoxPowerPoint.CheckedChanged += new System.EventHandler(this.checkBoxPowerPoint_CheckedChanged);
 
480
            // 
 
481
            // textBoxXmdsUri
 
482
            // 
 
483
            this.textBoxXmdsUri.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "serverURI", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
484
            this.textBoxXmdsUri.Location = new System.Drawing.Point(184, 11);
 
485
            this.textBoxXmdsUri.Name = "textBoxXmdsUri";
 
486
            this.textBoxXmdsUri.Size = new System.Drawing.Size(237, 20);
 
487
            this.textBoxXmdsUri.TabIndex = 0;
 
488
            this.textBoxXmdsUri.Text = global::XiboClient.Properties.Settings.Default.serverURI;
 
489
            // 
 
490
            // textBoxServerKey
 
491
            // 
 
492
            this.textBoxServerKey.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ServerKey", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
493
            this.textBoxServerKey.Location = new System.Drawing.Point(184, 38);
 
494
            this.textBoxServerKey.Name = "textBoxServerKey";
 
495
            this.textBoxServerKey.Size = new System.Drawing.Size(237, 20);
 
496
            this.textBoxServerKey.TabIndex = 2;
 
497
            this.textBoxServerKey.Text = global::XiboClient.Properties.Settings.Default.ServerKey;
 
498
            // 
 
499
            // textBoxLibraryPath
 
500
            // 
 
501
            this.textBoxLibraryPath.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "LibraryPath", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
502
            this.textBoxLibraryPath.Location = new System.Drawing.Point(184, 65);
 
503
            this.textBoxLibraryPath.Name = "textBoxLibraryPath";
 
504
            this.textBoxLibraryPath.Size = new System.Drawing.Size(156, 20);
 
505
            this.textBoxLibraryPath.TabIndex = 4;
 
506
            this.textBoxLibraryPath.Text = global::XiboClient.Properties.Settings.Default.LibraryPath;
 
507
            // 
 
508
            // textBoxProxyDomain
 
509
            // 
 
510
            this.textBoxProxyDomain.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyDomain", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
511
            this.textBoxProxyDomain.Location = new System.Drawing.Point(99, 95);
 
512
            this.textBoxProxyDomain.Name = "textBoxProxyDomain";
 
513
            this.textBoxProxyDomain.Size = new System.Drawing.Size(171, 20);
 
514
            this.textBoxProxyDomain.TabIndex = 7;
 
515
            this.textBoxProxyDomain.Text = global::XiboClient.Properties.Settings.Default.ProxyDomain;
 
516
            // 
 
517
            // maskedTextBoxProxyPass
 
518
            // 
 
519
            this.maskedTextBoxProxyPass.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyPassword", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
520
            this.maskedTextBoxProxyPass.Location = new System.Drawing.Point(99, 67);
 
521
            this.maskedTextBoxProxyPass.Name = "maskedTextBoxProxyPass";
 
522
            this.maskedTextBoxProxyPass.Size = new System.Drawing.Size(171, 20);
 
523
            this.maskedTextBoxProxyPass.TabIndex = 5;
 
524
            this.maskedTextBoxProxyPass.Text = global::XiboClient.Properties.Settings.Default.ProxyPassword;
 
525
            this.maskedTextBoxProxyPass.UseSystemPasswordChar = true;
 
526
            // 
 
527
            // textBoxProxyUser
 
528
            // 
 
529
            this.textBoxProxyUser.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "ProxyUser", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
530
            this.textBoxProxyUser.Location = new System.Drawing.Point(99, 41);
 
531
            this.textBoxProxyUser.Name = "textBoxProxyUser";
 
532
            this.textBoxProxyUser.Size = new System.Drawing.Size(171, 20);
 
533
            this.textBoxProxyUser.TabIndex = 3;
 
534
            this.textBoxProxyUser.Text = global::XiboClient.Properties.Settings.Default.ProxyUser;
 
535
            // 
 
536
            // labelXmdsUrl
 
537
            // 
 
538
            this.labelXmdsUrl.AutoSize = true;
 
539
            this.labelXmdsUrl.Location = new System.Drawing.Point(139, 10);
 
540
            this.labelXmdsUrl.Name = "labelXmdsUrl";
 
541
            this.labelXmdsUrl.Size = new System.Drawing.Size(154, 13);
 
542
            this.labelXmdsUrl.TabIndex = 3;
 
543
            this.labelXmdsUrl.Text = global::XiboClient.Properties.Settings.Default.XiboClient_xmds_xmds;
 
544
            // 
 
545
            // textBoxDisplayName
 
546
            // 
 
547
            this.textBoxDisplayName.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::XiboClient.Properties.Settings.Default, "displayName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
 
548
            this.textBoxDisplayName.Location = new System.Drawing.Point(142, 37);
 
549
            this.textBoxDisplayName.Name = "textBoxDisplayName";
 
550
            this.textBoxDisplayName.Size = new System.Drawing.Size(264, 20);
 
551
            this.textBoxDisplayName.TabIndex = 0;
 
552
            this.textBoxDisplayName.Text = global::XiboClient.Properties.Settings.Default.displayName;
 
553
            // 
 
554
            // xmds1
 
555
            // 
 
556
            this.xmds1.Credentials = null;
 
557
            this.xmds1.Url = "http://localhost/Xibo/server/xmds.php";
 
558
            this.xmds1.UseDefaultCredentials = false;
 
559
            // 
532
560
            // OptionForm
533
561
            // 
534
562
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
552
580
            this.tabPage2.PerformLayout();
553
581
            this.menuStrip1.ResumeLayout(false);
554
582
            this.menuStrip1.PerformLayout();
 
583
            ((System.ComponentModel.ISupportInitialize)(this.nupScrollStepAmount)).EndInit();
555
584
            this.ResumeLayout(false);
556
585
            this.PerformLayout();
557
586
 
603
632
        private System.Windows.Forms.Label label8;
604
633
        private System.Windows.Forms.TextBox tbHardwareKey;
605
634
        private System.Windows.Forms.Label label9;
 
635
        private System.Windows.Forms.Label label10;
 
636
        private System.Windows.Forms.NumericUpDown nupScrollStepAmount;
606
637
    }
607
638
}
 
 
b'\\ No newline at end of file'