Network.Camera.Display extended to 12 images.

This commit is contained in:
Milan Hanajik 2017-09-28 00:06:53 +02:00
parent 9ac3dd07b9
commit fa36932fbc
3 changed files with 1035 additions and 249 deletions

View File

@ -76,9 +76,15 @@ namespace TBF.BenchControl.Network.Camera.Display
this.imageFileNames = imageFileNames;
this.imagesCount = (imageFileNames == null) ? 0 : imageFileNames.Length;
groupBoxes = new GroupBox[] { groupBox1, groupBox2, groupBox3, groupBox4, groupBox5, groupBox6 };
pictureBoxes = new PictureBox[] { pictureBox1, pictureBox2, pictureBox3, pictureBox4, pictureBox5, pictureBox6 };
checkBoxes = new CheckBox[] { checkBox1, checkBox2, checkBox3, checkBox4, checkBox5, checkBox6 };
groupBoxes = new GroupBox[] { groupBox1, groupBox2, groupBox3, groupBox4, groupBox5, groupBox6,
groupBox7, groupBox8, groupBox9, groupBox10, groupBox11, groupBox12 };
pictureBoxes = new PictureBox[] { pictureBox1, pictureBox2, pictureBox3, pictureBox4, pictureBox5, pictureBox6,
pictureBox7, pictureBox8, pictureBox9, pictureBox10, pictureBox11, pictureBox12 };
checkBoxes = new CheckBox[] { checkBox1, checkBox2, checkBox3, checkBox4, checkBox5, checkBox6,
checkBox7, checkBox8, checkBox9, checkBox10, checkBox11, checkBox12 };
boxesCount = pictureBoxes.Length;
Text = title;
@ -102,7 +108,10 @@ namespace TBF.BenchControl.Network.Camera.Display
SelectedImages = new bool[imagesCount];
if (lastVisibleGroupBoxIx < 3) Height = 338;
if (lastVisibleGroupBoxIx < 4)
Height = 321;
else if (lastVisibleGroupBoxIx < 8)
Height = 616;
Result = DialogResult.None;
completed = false;

View File

@ -31,230 +31,410 @@ namespace TBF.BenchControl.Network.Camera.Display
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayForm));
this.okButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.checkBox4 = new System.Windows.Forms.CheckBox();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.retryButton = new System.Windows.Forms.Button();
this.abortButton = new System.Windows.Forms.Button();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.checkBox5 = new System.Windows.Forms.CheckBox();
this.pictureBox5 = new System.Windows.Forms.PictureBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.pictureBox6 = new System.Windows.Forms.PictureBox();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
this.groupBox4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
this.groupBox6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
this.SuspendLayout();
//
// okButton
//
resources.ApplyResources(this.okButton, "okButton");
this.okButton.ForeColor = System.Drawing.Color.Black;
this.okButton.Name = "okButton";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.checkBox1);
this.groupBox1.Controls.Add(this.pictureBox1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.ForeColor = System.Drawing.Color.Black;
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// checkBox1
//
resources.ApplyResources(this.checkBox1, "checkBox1");
this.checkBox1.Name = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
// pictureBox1
//
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.TabStop = false;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.checkBox2);
this.groupBox2.Controls.Add(this.pictureBox2);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.ForeColor = System.Drawing.Color.Black;
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// checkBox2
//
resources.ApplyResources(this.checkBox2, "checkBox2");
this.checkBox2.Name = "checkBox2";
this.checkBox2.UseVisualStyleBackColor = true;
//
// pictureBox2
//
resources.ApplyResources(this.pictureBox2, "pictureBox2");
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.TabStop = false;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.checkBox3);
this.groupBox3.Controls.Add(this.pictureBox3);
resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.ForeColor = System.Drawing.Color.Black;
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// checkBox3
//
resources.ApplyResources(this.checkBox3, "checkBox3");
this.checkBox3.Name = "checkBox3";
this.checkBox3.UseVisualStyleBackColor = true;
//
// pictureBox3
//
resources.ApplyResources(this.pictureBox3, "pictureBox3");
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.TabStop = false;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.checkBox4);
this.groupBox4.Controls.Add(this.pictureBox4);
resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.ForeColor = System.Drawing.Color.Black;
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// checkBox4
//
resources.ApplyResources(this.checkBox4, "checkBox4");
this.checkBox4.Name = "checkBox4";
this.checkBox4.UseVisualStyleBackColor = true;
//
// pictureBox4
//
resources.ApplyResources(this.pictureBox4, "pictureBox4");
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.TabStop = false;
//
// retryButton
//
resources.ApplyResources(this.retryButton, "retryButton");
this.retryButton.ForeColor = System.Drawing.Color.Black;
this.retryButton.Name = "retryButton";
this.retryButton.UseVisualStyleBackColor = true;
this.retryButton.Click += new System.EventHandler(this.retryButton_Click);
//
// abortButton
//
resources.ApplyResources(this.abortButton, "abortButton");
this.abortButton.ForeColor = System.Drawing.Color.Black;
this.abortButton.Name = "abortButton";
this.abortButton.UseVisualStyleBackColor = true;
this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.checkBox5);
this.groupBox5.Controls.Add(this.pictureBox5);
resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.ForeColor = System.Drawing.Color.Black;
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// checkBox5
//
resources.ApplyResources(this.checkBox5, "checkBox5");
this.checkBox5.Name = "checkBox5";
this.checkBox5.UseVisualStyleBackColor = true;
//
// pictureBox5
//
resources.ApplyResources(this.pictureBox5, "pictureBox5");
this.pictureBox5.Name = "pictureBox5";
this.pictureBox5.TabStop = false;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.checkBox6);
this.groupBox6.Controls.Add(this.pictureBox6);
resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.ForeColor = System.Drawing.Color.Black;
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// checkBox6
//
resources.ApplyResources(this.checkBox6, "checkBox6");
this.checkBox6.Name = "checkBox6";
this.checkBox6.UseVisualStyleBackColor = true;
//
// pictureBox6
//
resources.ApplyResources(this.pictureBox6, "pictureBox6");
this.pictureBox6.Name = "pictureBox6";
this.pictureBox6.TabStop = false;
//
// DisplayForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DarkGray;
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.abortButton);
this.Controls.Add(this.retryButton);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.okButton);
this.ForeColor = System.Drawing.Color.Black;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "DisplayForm";
this.TopMost = true;
this.Load += new System.EventHandler(this.CycleBeginningForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
this.ResumeLayout(false);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayForm));
this.okButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.checkBox4 = new System.Windows.Forms.CheckBox();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.retryButton = new System.Windows.Forms.Button();
this.abortButton = new System.Windows.Forms.Button();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.checkBox5 = new System.Windows.Forms.CheckBox();
this.pictureBox5 = new System.Windows.Forms.PictureBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.pictureBox6 = new System.Windows.Forms.PictureBox();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.checkBox7 = new System.Windows.Forms.CheckBox();
this.pictureBox7 = new System.Windows.Forms.PictureBox();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.checkBox8 = new System.Windows.Forms.CheckBox();
this.pictureBox8 = new System.Windows.Forms.PictureBox();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.checkBox9 = new System.Windows.Forms.CheckBox();
this.pictureBox9 = new System.Windows.Forms.PictureBox();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.checkBox10 = new System.Windows.Forms.CheckBox();
this.pictureBox10 = new System.Windows.Forms.PictureBox();
this.groupBox11 = new System.Windows.Forms.GroupBox();
this.checkBox11 = new System.Windows.Forms.CheckBox();
this.pictureBox11 = new System.Windows.Forms.PictureBox();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.checkBox12 = new System.Windows.Forms.CheckBox();
this.pictureBox12 = new System.Windows.Forms.PictureBox();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
this.groupBox4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
this.groupBox6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
this.groupBox7.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
this.groupBox8.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
this.groupBox9.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
this.groupBox10.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
this.groupBox11.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
this.groupBox12.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
this.SuspendLayout();
//
// okButton
//
resources.ApplyResources(this.okButton, "okButton");
this.okButton.ForeColor = System.Drawing.Color.Black;
this.okButton.Name = "okButton";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.checkBox1);
this.groupBox1.Controls.Add(this.pictureBox1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.ForeColor = System.Drawing.Color.Black;
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// checkBox1
//
resources.ApplyResources(this.checkBox1, "checkBox1");
this.checkBox1.Name = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
// pictureBox1
//
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.TabStop = false;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.checkBox2);
this.groupBox2.Controls.Add(this.pictureBox2);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.ForeColor = System.Drawing.Color.Black;
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// checkBox2
//
resources.ApplyResources(this.checkBox2, "checkBox2");
this.checkBox2.Name = "checkBox2";
this.checkBox2.UseVisualStyleBackColor = true;
//
// pictureBox2
//
resources.ApplyResources(this.pictureBox2, "pictureBox2");
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.TabStop = false;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.checkBox3);
this.groupBox3.Controls.Add(this.pictureBox3);
resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.ForeColor = System.Drawing.Color.Black;
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// checkBox3
//
resources.ApplyResources(this.checkBox3, "checkBox3");
this.checkBox3.Name = "checkBox3";
this.checkBox3.UseVisualStyleBackColor = true;
//
// pictureBox3
//
resources.ApplyResources(this.pictureBox3, "pictureBox3");
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.TabStop = false;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.checkBox4);
this.groupBox4.Controls.Add(this.pictureBox4);
resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.ForeColor = System.Drawing.Color.Black;
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// checkBox4
//
resources.ApplyResources(this.checkBox4, "checkBox4");
this.checkBox4.Name = "checkBox4";
this.checkBox4.UseVisualStyleBackColor = true;
//
// pictureBox4
//
resources.ApplyResources(this.pictureBox4, "pictureBox4");
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.TabStop = false;
//
// retryButton
//
resources.ApplyResources(this.retryButton, "retryButton");
this.retryButton.ForeColor = System.Drawing.Color.Black;
this.retryButton.Name = "retryButton";
this.retryButton.UseVisualStyleBackColor = true;
this.retryButton.Click += new System.EventHandler(this.retryButton_Click);
//
// abortButton
//
resources.ApplyResources(this.abortButton, "abortButton");
this.abortButton.ForeColor = System.Drawing.Color.Black;
this.abortButton.Name = "abortButton";
this.abortButton.UseVisualStyleBackColor = true;
this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.checkBox5);
this.groupBox5.Controls.Add(this.pictureBox5);
resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.ForeColor = System.Drawing.Color.Black;
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// checkBox5
//
resources.ApplyResources(this.checkBox5, "checkBox5");
this.checkBox5.Name = "checkBox5";
this.checkBox5.UseVisualStyleBackColor = true;
//
// pictureBox5
//
resources.ApplyResources(this.pictureBox5, "pictureBox5");
this.pictureBox5.Name = "pictureBox5";
this.pictureBox5.TabStop = false;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.checkBox6);
this.groupBox6.Controls.Add(this.pictureBox6);
resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.ForeColor = System.Drawing.Color.Black;
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// checkBox6
//
resources.ApplyResources(this.checkBox6, "checkBox6");
this.checkBox6.Name = "checkBox6";
this.checkBox6.UseVisualStyleBackColor = true;
//
// pictureBox6
//
resources.ApplyResources(this.pictureBox6, "pictureBox6");
this.pictureBox6.Name = "pictureBox6";
this.pictureBox6.TabStop = false;
//
// groupBox7
//
this.groupBox7.Controls.Add(this.checkBox7);
this.groupBox7.Controls.Add(this.pictureBox7);
resources.ApplyResources(this.groupBox7, "groupBox7");
this.groupBox7.ForeColor = System.Drawing.Color.Black;
this.groupBox7.Name = "groupBox7";
this.groupBox7.TabStop = false;
//
// checkBox7
//
resources.ApplyResources(this.checkBox7, "checkBox7");
this.checkBox7.Name = "checkBox7";
this.checkBox7.UseVisualStyleBackColor = true;
//
// pictureBox7
//
resources.ApplyResources(this.pictureBox7, "pictureBox7");
this.pictureBox7.Name = "pictureBox7";
this.pictureBox7.TabStop = false;
//
// groupBox8
//
this.groupBox8.Controls.Add(this.checkBox8);
this.groupBox8.Controls.Add(this.pictureBox8);
resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.ForeColor = System.Drawing.Color.Black;
this.groupBox8.Name = "groupBox8";
this.groupBox8.TabStop = false;
//
// checkBox8
//
resources.ApplyResources(this.checkBox8, "checkBox8");
this.checkBox8.Name = "checkBox8";
this.checkBox8.UseVisualStyleBackColor = true;
//
// pictureBox8
//
resources.ApplyResources(this.pictureBox8, "pictureBox8");
this.pictureBox8.Name = "pictureBox8";
this.pictureBox8.TabStop = false;
//
// groupBox9
//
this.groupBox9.Controls.Add(this.checkBox9);
this.groupBox9.Controls.Add(this.pictureBox9);
resources.ApplyResources(this.groupBox9, "groupBox9");
this.groupBox9.ForeColor = System.Drawing.Color.Black;
this.groupBox9.Name = "groupBox9";
this.groupBox9.TabStop = false;
//
// checkBox9
//
resources.ApplyResources(this.checkBox9, "checkBox9");
this.checkBox9.Name = "checkBox9";
this.checkBox9.UseVisualStyleBackColor = true;
//
// pictureBox9
//
resources.ApplyResources(this.pictureBox9, "pictureBox9");
this.pictureBox9.Name = "pictureBox9";
this.pictureBox9.TabStop = false;
//
// groupBox10
//
this.groupBox10.Controls.Add(this.checkBox10);
this.groupBox10.Controls.Add(this.pictureBox10);
resources.ApplyResources(this.groupBox10, "groupBox10");
this.groupBox10.ForeColor = System.Drawing.Color.Black;
this.groupBox10.Name = "groupBox10";
this.groupBox10.TabStop = false;
//
// checkBox10
//
resources.ApplyResources(this.checkBox10, "checkBox10");
this.checkBox10.Name = "checkBox10";
this.checkBox10.UseVisualStyleBackColor = true;
//
// pictureBox10
//
resources.ApplyResources(this.pictureBox10, "pictureBox10");
this.pictureBox10.Name = "pictureBox10";
this.pictureBox10.TabStop = false;
//
// groupBox11
//
this.groupBox11.Controls.Add(this.checkBox11);
this.groupBox11.Controls.Add(this.pictureBox11);
resources.ApplyResources(this.groupBox11, "groupBox11");
this.groupBox11.ForeColor = System.Drawing.Color.Black;
this.groupBox11.Name = "groupBox11";
this.groupBox11.TabStop = false;
//
// checkBox11
//
resources.ApplyResources(this.checkBox11, "checkBox11");
this.checkBox11.Name = "checkBox11";
this.checkBox11.UseVisualStyleBackColor = true;
//
// pictureBox11
//
resources.ApplyResources(this.pictureBox11, "pictureBox11");
this.pictureBox11.Name = "pictureBox11";
this.pictureBox11.TabStop = false;
//
// groupBox12
//
this.groupBox12.Controls.Add(this.checkBox12);
this.groupBox12.Controls.Add(this.pictureBox12);
resources.ApplyResources(this.groupBox12, "groupBox12");
this.groupBox12.ForeColor = System.Drawing.Color.Black;
this.groupBox12.Name = "groupBox12";
this.groupBox12.TabStop = false;
//
// checkBox12
//
resources.ApplyResources(this.checkBox12, "checkBox12");
this.checkBox12.Name = "checkBox12";
this.checkBox12.UseVisualStyleBackColor = true;
//
// pictureBox12
//
resources.ApplyResources(this.pictureBox12, "pictureBox12");
this.pictureBox12.Name = "pictureBox12";
this.pictureBox12.TabStop = false;
//
// DisplayForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DarkGray;
this.Controls.Add(this.groupBox12);
this.Controls.Add(this.groupBox11);
this.Controls.Add(this.groupBox10);
this.Controls.Add(this.groupBox9);
this.Controls.Add(this.groupBox8);
this.Controls.Add(this.groupBox7);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.abortButton);
this.Controls.Add(this.retryButton);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.okButton);
this.ForeColor = System.Drawing.Color.Black;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "DisplayForm";
this.TopMost = true;
this.Load += new System.EventHandler(this.CycleBeginningForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
this.groupBox7.ResumeLayout(false);
this.groupBox7.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
this.groupBox11.ResumeLayout(false);
this.groupBox11.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
this.groupBox12.ResumeLayout(false);
this.groupBox12.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
this.ResumeLayout(false);
}
@ -281,5 +461,23 @@ namespace TBF.BenchControl.Network.Camera.Display
private System.Windows.Forms.CheckBox checkBox4;
private System.Windows.Forms.CheckBox checkBox5;
private System.Windows.Forms.CheckBox checkBox6;
private System.Windows.Forms.GroupBox groupBox7;
private System.Windows.Forms.CheckBox checkBox7;
private System.Windows.Forms.PictureBox pictureBox7;
private System.Windows.Forms.GroupBox groupBox8;
private System.Windows.Forms.CheckBox checkBox8;
private System.Windows.Forms.PictureBox pictureBox8;
private System.Windows.Forms.GroupBox groupBox9;
private System.Windows.Forms.CheckBox checkBox9;
private System.Windows.Forms.PictureBox pictureBox9;
private System.Windows.Forms.GroupBox groupBox10;
private System.Windows.Forms.CheckBox checkBox10;
private System.Windows.Forms.PictureBox pictureBox10;
private System.Windows.Forms.GroupBox groupBox11;
private System.Windows.Forms.CheckBox checkBox11;
private System.Windows.Forms.PictureBox pictureBox11;
private System.Windows.Forms.GroupBox groupBox12;
private System.Windows.Forms.CheckBox checkBox12;
private System.Windows.Forms.PictureBox pictureBox12;
}
}

View File

@ -126,10 +126,10 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="okButton.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 19</value>
<value>1371, 12</value>
</data>
<data name="okButton.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 58</value>
<value>102, 58</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="okButton.TabIndex" type="System.Int32, mscorlib">
@ -148,7 +148,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;okButton.ZOrder" xml:space="preserve">
<value>8</value>
<value>14</value>
</data>
<data name="checkBox1.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -217,7 +217,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>15, 8</value>
<value>3, 1</value>
</data>
<data name="groupBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -238,7 +238,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox1.ZOrder" xml:space="preserve">
<value>7</value>
<value>13</value>
</data>
<data name="checkBox2.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -313,7 +313,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox2.Location" type="System.Drawing.Point, System.Drawing">
<value>365, 8</value>
<value>344, 1</value>
</data>
<data name="groupBox2.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -334,7 +334,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox2.ZOrder" xml:space="preserve">
<value>6</value>
<value>12</value>
</data>
<data name="checkBox3.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -409,7 +409,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox3.Location" type="System.Drawing.Point, System.Drawing">
<value>717, 8</value>
<value>685, 1</value>
</data>
<data name="groupBox3.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -430,7 +430,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox3.ZOrder" xml:space="preserve">
<value>5</value>
<value>11</value>
</data>
<data name="checkBox4.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -505,7 +505,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox4.Location" type="System.Drawing.Point, System.Drawing">
<value>15, 306</value>
<value>1026, 1</value>
</data>
<data name="groupBox4.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -526,7 +526,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox4.ZOrder" xml:space="preserve">
<value>4</value>
<value>10</value>
</data>
<data name="retryButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -538,10 +538,10 @@
<value>NoControl</value>
</data>
<data name="retryButton.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 96</value>
<value>1371, 89</value>
</data>
<data name="retryButton.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 58</value>
<value>102, 58</value>
</data>
<data name="retryButton.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
@ -559,7 +559,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;retryButton.ZOrder" xml:space="preserve">
<value>3</value>
<value>9</value>
</data>
<data name="abortButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -571,10 +571,10 @@
<value>NoControl</value>
</data>
<data name="abortButton.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 173</value>
<value>1371, 166</value>
</data>
<data name="abortButton.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 58</value>
<value>102, 58</value>
</data>
<data name="abortButton.TabIndex" type="System.Int32, mscorlib">
<value>9</value>
@ -592,7 +592,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;abortButton.ZOrder" xml:space="preserve">
<value>2</value>
<value>8</value>
</data>
<data name="checkBox5.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -667,7 +667,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox5.Location" type="System.Drawing.Point, System.Drawing">
<value>365, 306</value>
<value>3, 296</value>
</data>
<data name="groupBox5.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -688,7 +688,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox5.ZOrder" xml:space="preserve">
<value>1</value>
<value>7</value>
</data>
<data name="checkBox6.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
@ -763,7 +763,7 @@
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox6.Location" type="System.Drawing.Point, System.Drawing">
<value>717, 306</value>
<value>344, 296</value>
</data>
<data name="groupBox6.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
@ -784,6 +784,582 @@
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox6.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="checkBox7.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox7.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox7.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox7.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox7.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox7.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox7.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox7.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox7.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox7.Name" xml:space="preserve">
<value>checkBox7</value>
</data>
<data name="&gt;&gt;checkBox7.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox7.Parent" xml:space="preserve">
<value>groupBox7</value>
</data>
<data name="&gt;&gt;checkBox7.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox7.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox7.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox7.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox7.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox7.Name" xml:space="preserve">
<value>pictureBox7</value>
</data>
<data name="&gt;&gt;pictureBox7.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox7.Parent" xml:space="preserve">
<value>groupBox7</value>
</data>
<data name="&gt;&gt;pictureBox7.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox7.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox7.Location" type="System.Drawing.Point, System.Drawing">
<value>685, 297</value>
</data>
<data name="groupBox7.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox7.TabIndex" type="System.Int32, mscorlib">
<value>12</value>
</data>
<data name="groupBox7.Text" xml:space="preserve">
<value>Watermeter 7</value>
</data>
<data name="&gt;&gt;groupBox7.Name" xml:space="preserve">
<value>groupBox7</value>
</data>
<data name="&gt;&gt;groupBox7.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox7.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox7.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="checkBox8.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox8.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox8.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox8.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox8.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox8.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox8.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox8.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox8.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox8.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox8.Name" xml:space="preserve">
<value>checkBox8</value>
</data>
<data name="&gt;&gt;checkBox8.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox8.Parent" xml:space="preserve">
<value>groupBox8</value>
</data>
<data name="&gt;&gt;checkBox8.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox8.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox8.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox8.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox8.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox8.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox8.Name" xml:space="preserve">
<value>pictureBox8</value>
</data>
<data name="&gt;&gt;pictureBox8.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox8.Parent" xml:space="preserve">
<value>groupBox8</value>
</data>
<data name="&gt;&gt;pictureBox8.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox8.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox8.Location" type="System.Drawing.Point, System.Drawing">
<value>1026, 297</value>
</data>
<data name="groupBox8.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox8.TabIndex" type="System.Int32, mscorlib">
<value>13</value>
</data>
<data name="groupBox8.Text" xml:space="preserve">
<value>Watermeter 8</value>
</data>
<data name="&gt;&gt;groupBox8.Name" xml:space="preserve">
<value>groupBox8</value>
</data>
<data name="&gt;&gt;groupBox8.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox8.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox8.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="checkBox9.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox9.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox9.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox9.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox9.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox9.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox9.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox9.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox9.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox9.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox9.Name" xml:space="preserve">
<value>checkBox9</value>
</data>
<data name="&gt;&gt;checkBox9.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox9.Parent" xml:space="preserve">
<value>groupBox9</value>
</data>
<data name="&gt;&gt;checkBox9.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox9.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox9.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox9.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox9.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox9.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox9.Name" xml:space="preserve">
<value>pictureBox9</value>
</data>
<data name="&gt;&gt;pictureBox9.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox9.Parent" xml:space="preserve">
<value>groupBox9</value>
</data>
<data name="&gt;&gt;pictureBox9.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox9.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox9.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 591</value>
</data>
<data name="groupBox9.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox9.TabIndex" type="System.Int32, mscorlib">
<value>14</value>
</data>
<data name="groupBox9.Text" xml:space="preserve">
<value>Watermeter 9</value>
</data>
<data name="&gt;&gt;groupBox9.Name" xml:space="preserve">
<value>groupBox9</value>
</data>
<data name="&gt;&gt;groupBox9.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox9.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox9.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="checkBox10.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox10.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox10.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox10.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox10.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox10.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox10.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox10.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox10.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox10.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox10.Name" xml:space="preserve">
<value>checkBox10</value>
</data>
<data name="&gt;&gt;checkBox10.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox10.Parent" xml:space="preserve">
<value>groupBox10</value>
</data>
<data name="&gt;&gt;checkBox10.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox10.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox10.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox10.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox10.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox10.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox10.Name" xml:space="preserve">
<value>pictureBox10</value>
</data>
<data name="&gt;&gt;pictureBox10.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox10.Parent" xml:space="preserve">
<value>groupBox10</value>
</data>
<data name="&gt;&gt;pictureBox10.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox10.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox10.Location" type="System.Drawing.Point, System.Drawing">
<value>344, 591</value>
</data>
<data name="groupBox10.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox10.TabIndex" type="System.Int32, mscorlib">
<value>15</value>
</data>
<data name="groupBox10.Text" xml:space="preserve">
<value>Watermeter 10</value>
</data>
<data name="&gt;&gt;groupBox10.Name" xml:space="preserve">
<value>groupBox10</value>
</data>
<data name="&gt;&gt;groupBox10.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox10.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox10.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="checkBox11.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox11.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox11.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox11.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox11.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox11.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox11.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox11.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox11.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox11.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox11.Name" xml:space="preserve">
<value>checkBox11</value>
</data>
<data name="&gt;&gt;checkBox11.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox11.Parent" xml:space="preserve">
<value>groupBox11</value>
</data>
<data name="&gt;&gt;checkBox11.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox11.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox11.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox11.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox11.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox11.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox11.Name" xml:space="preserve">
<value>pictureBox11</value>
</data>
<data name="&gt;&gt;pictureBox11.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox11.Parent" xml:space="preserve">
<value>groupBox11</value>
</data>
<data name="&gt;&gt;pictureBox11.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox11.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox11.Location" type="System.Drawing.Point, System.Drawing">
<value>685, 591</value>
</data>
<data name="groupBox11.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox11.TabIndex" type="System.Int32, mscorlib">
<value>16</value>
</data>
<data name="groupBox11.Text" xml:space="preserve">
<value>Watermeter 11</value>
</data>
<data name="&gt;&gt;groupBox11.Name" xml:space="preserve">
<value>groupBox11</value>
</data>
<data name="&gt;&gt;groupBox11.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox11.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox11.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="checkBox12.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="checkBox12.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBox12.CheckAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="checkBox12.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 12pt</value>
</data>
<data name="checkBox12.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBox12.Location" type="System.Drawing.Point, System.Drawing">
<value>257, 19</value>
</data>
<data name="checkBox12.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 22</value>
</data>
<data name="checkBox12.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="checkBox12.Text" xml:space="preserve">
<value>Retry</value>
</data>
<data name="checkBox12.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleRight</value>
</data>
<data name="&gt;&gt;checkBox12.Name" xml:space="preserve">
<value>checkBox12</value>
</data>
<data name="&gt;&gt;checkBox12.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;checkBox12.Parent" xml:space="preserve">
<value>groupBox12</value>
</data>
<data name="&gt;&gt;checkBox12.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pictureBox12.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="pictureBox12.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 45</value>
</data>
<data name="pictureBox12.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 240</value>
</data>
<data name="pictureBox12.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>StretchImage</value>
</data>
<data name="pictureBox12.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pictureBox12.Name" xml:space="preserve">
<value>pictureBox12</value>
</data>
<data name="&gt;&gt;pictureBox12.Type" xml:space="preserve">
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pictureBox12.Parent" xml:space="preserve">
<value>groupBox12</value>
</data>
<data name="&gt;&gt;pictureBox12.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="groupBox12.Font" type="System.Drawing.Font, System.Drawing">
<value>Verdana, 14.25pt</value>
</data>
<data name="groupBox12.Location" type="System.Drawing.Point, System.Drawing">
<value>1026, 591</value>
</data>
<data name="groupBox12.Size" type="System.Drawing.Size, System.Drawing">
<value>335, 293</value>
</data>
<data name="groupBox12.TabIndex" type="System.Int32, mscorlib">
<value>17</value>
</data>
<data name="groupBox12.Text" xml:space="preserve">
<value>Watermeter 12</value>
</data>
<data name="&gt;&gt;groupBox12.Name" xml:space="preserve">
<value>groupBox12</value>
</data>
<data name="&gt;&gt;groupBox12.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBox12.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBox12.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
@ -796,7 +1372,10 @@
<value>True</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>1237, 613</value>
<value>1483, 887</value>
</data>
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>DisplayForm</value>