Click here to Skip to main content
15,884,986 members
Articles / Multimedia / GDI+

Large pattern recognition system using multi neural networks

Rate me:
Please Sign up or sign in to vote.
4.94/5 (71 votes)
31 May 2012CPOL7 min read 212.5K   253.2K   192  
Tutorials of using multi neural networks for large pattern recognition system, handwriting recognition system
namespace NNControl.NNTesting
{
    partial class NNTestingControl
    {
        /// <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 Component 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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.panelMenu = new System.Windows.Forms.Panel();
            this.btnPreview = new System.Windows.Forms.Button();
            this.panelNavigation = new System.Windows.Forms.Panel();
            this.lblNavigation = new System.Windows.Forms.Label();
            this.tbNavigation = new System.Windows.Forms.TextBox();
            this.btnBack = new System.Windows.Forms.Button();
            this.btnNext = new System.Windows.Forms.Button();
            this.udPenWidth = new System.Windows.Forms.NumericUpDown();
            this.btPointer = new System.Windows.Forms.Button();
            this.btExport = new System.Windows.Forms.Button();
            this.btColor = new System.Windows.Forms.Button();
            this.btRecognition = new System.Windows.Forms.Button();
            this.btNewFile = new System.Windows.Forms.Button();
            this.btEllipse = new System.Windows.Forms.Button();
            this.btRectangle = new System.Windows.Forms.Button();
            this.btSave = new System.Windows.Forms.Button();
            this.btPencil = new System.Windows.Forms.Button();
            this.btLoad = new System.Windows.Forms.Button();
            this.btLine = new System.Windows.Forms.Button();
            this.btnOpen = new System.Windows.Forms.Button();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.drawArea = new DrawTools.DrawArea();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.panelPreview = new System.Windows.Forms.Panel();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pbPreview = new System.Windows.Forms.PictureBox();
            this.panel3 = new System.Windows.Forms.Panel();
            this.pbPartBitmap = new System.Windows.Forms.PictureBox();
            this.lbRecognizedText = new System.Windows.Forms.ListBox();
            ((System.ComponentModel.ISupportInitialize)(this.spcMain)).BeginInit();
            this.spcMain.Panel1.SuspendLayout();
            this.spcMain.Panel2.SuspendLayout();
            this.spcMain.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.panelMenu.SuspendLayout();
            this.panelNavigation.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udPenWidth)).BeginInit();
            this.tableLayoutPanel4.SuspendLayout();
            this.panel1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbPreview)).BeginInit();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbPartBitmap)).BeginInit();
            this.SuspendLayout();
            // 
            // spcMain
            // 
            // 
            // spcMain.Panel1
            // 
            this.spcMain.Panel1.Controls.Add(this.tableLayoutPanel1);
            // 
            // spcMain.Panel2
            // 
            this.spcMain.Panel2.Controls.Add(this.tableLayoutPanel2);
            this.spcMain.Size = new System.Drawing.Size(914, 468);
            this.spcMain.SplitterDistance = 688;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.panelMenu, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 2;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 48F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(684, 464);
            this.tableLayoutPanel1.TabIndex = 3;
            // 
            // panelMenu
            // 
            this.panelMenu.BackColor = System.Drawing.Color.LightSteelBlue;
            this.panelMenu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelMenu.Controls.Add(this.btnPreview);
            this.panelMenu.Controls.Add(this.panelNavigation);
            this.panelMenu.Controls.Add(this.udPenWidth);
            this.panelMenu.Controls.Add(this.btPointer);
            this.panelMenu.Controls.Add(this.btExport);
            this.panelMenu.Controls.Add(this.btColor);
            this.panelMenu.Controls.Add(this.btRecognition);
            this.panelMenu.Controls.Add(this.btNewFile);
            this.panelMenu.Controls.Add(this.btEllipse);
            this.panelMenu.Controls.Add(this.btRectangle);
            this.panelMenu.Controls.Add(this.btSave);
            this.panelMenu.Controls.Add(this.btPencil);
            this.panelMenu.Controls.Add(this.btLoad);
            this.panelMenu.Controls.Add(this.btLine);
            this.panelMenu.Controls.Add(this.btnOpen);
            this.panelMenu.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelMenu.Location = new System.Drawing.Point(3, 3);
            this.panelMenu.Name = "panelMenu";
            this.panelMenu.Size = new System.Drawing.Size(678, 42);
            this.panelMenu.TabIndex = 12;
            // 
            // btnPreview
            // 
            this.btnPreview.Image = global::NNControl.Properties.Resources.btnPreview;
            this.btnPreview.Location = new System.Drawing.Point(411, 6);
            this.btnPreview.Name = "btnPreview";
            this.btnPreview.Size = new System.Drawing.Size(25, 25);
            this.btnPreview.TabIndex = 17;
            this.btnPreview.UseVisualStyleBackColor = true;
            // 
            // panelNavigation
            // 
            this.panelNavigation.BackColor = System.Drawing.Color.LightSteelBlue;
            this.panelNavigation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelNavigation.Controls.Add(this.lblNavigation);
            this.panelNavigation.Controls.Add(this.tbNavigation);
            this.panelNavigation.Controls.Add(this.btnBack);
            this.panelNavigation.Controls.Add(this.btnNext);
            this.panelNavigation.Location = new System.Drawing.Point(472, 3);
            this.panelNavigation.Name = "panelNavigation";
            this.panelNavigation.Size = new System.Drawing.Size(150, 29);
            this.panelNavigation.TabIndex = 20;
            this.panelNavigation.Visible = false;
            // 
            // lblNavigation
            // 
            this.lblNavigation.AutoSize = true;
            this.lblNavigation.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNavigation.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
            this.lblNavigation.Location = new System.Drawing.Point(41, 5);
            this.lblNavigation.Name = "lblNavigation";
            this.lblNavigation.Size = new System.Drawing.Size(24, 18);
            this.lblNavigation.TabIndex = 1;
            this.lblNavigation.Text = "/ 0";
            // 
            // tbNavigation
            // 
            this.tbNavigation.Location = new System.Drawing.Point(4, 4);
            this.tbNavigation.Name = "tbNavigation";
            this.tbNavigation.ReadOnly = true;
            this.tbNavigation.Size = new System.Drawing.Size(33, 20);
            this.tbNavigation.TabIndex = 19;
            this.tbNavigation.Text = "0";
            this.tbNavigation.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // btnBack
            // 
            this.btnBack.Image = global::NNControl.Properties.Resources.btnBack;
            this.btnBack.Location = new System.Drawing.Point(88, 1);
            this.btnBack.Name = "btnBack";
            this.btnBack.Size = new System.Drawing.Size(25, 25);
            this.btnBack.TabIndex = 18;
            this.btnBack.UseVisualStyleBackColor = true;
            this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
            // 
            // btnNext
            // 
            this.btnNext.Image = global::NNControl.Properties.Resources.btnNext;
            this.btnNext.Location = new System.Drawing.Point(119, 1);
            this.btnNext.Name = "btnNext";
            this.btnNext.Size = new System.Drawing.Size(25, 25);
            this.btnNext.TabIndex = 17;
            this.btnNext.UseVisualStyleBackColor = true;
            this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
            // 
            // udPenWidth
            // 
            this.udPenWidth.Location = new System.Drawing.Point(363, 9);
            this.udPenWidth.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.udPenWidth.Name = "udPenWidth";
            this.udPenWidth.Size = new System.Drawing.Size(42, 20);
            this.udPenWidth.TabIndex = 19;
            this.udPenWidth.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.udPenWidth.ValueChanged += new System.EventHandler(this.udPenWidth_ValueChanged);
            // 
            // btPointer
            // 
            this.btPointer.Image = global::NNControl.Properties.Resources.pointer;
            this.btPointer.Location = new System.Drawing.Point(301, 6);
            this.btPointer.Name = "btPointer";
            this.btPointer.Size = new System.Drawing.Size(25, 25);
            this.btPointer.TabIndex = 17;
            this.btPointer.UseVisualStyleBackColor = true;
            this.btPointer.Click += new System.EventHandler(this.btPointer_Click);
            // 
            // btExport
            // 
            this.btExport.Image = global::NNControl.Properties.Resources.export;
            this.btExport.Location = new System.Drawing.Point(117, 6);
            this.btExport.Name = "btExport";
            this.btExport.Size = new System.Drawing.Size(25, 25);
            this.btExport.TabIndex = 17;
            this.btExport.UseVisualStyleBackColor = true;
            this.btExport.Click += new System.EventHandler(this.btExport_Click);
            // 
            // btColor
            // 
            this.btColor.BackColor = System.Drawing.Color.Yellow;
            this.btColor.Location = new System.Drawing.Point(332, 6);
            this.btColor.Name = "btColor";
            this.btColor.Size = new System.Drawing.Size(25, 25);
            this.btColor.TabIndex = 17;
            this.btColor.UseVisualStyleBackColor = false;
            this.btColor.Click += new System.EventHandler(this.btColor_Click);
            // 
            // btRecognition
            // 
            this.btRecognition.Image = global::NNControl.Properties.Resources.fingerprint_recognition;
            this.btRecognition.Location = new System.Drawing.Point(441, 6);
            this.btRecognition.Name = "btRecognition";
            this.btRecognition.Size = new System.Drawing.Size(25, 25);
            this.btRecognition.TabIndex = 17;
            this.btRecognition.UseVisualStyleBackColor = true;
            this.btRecognition.Click += new System.EventHandler(this.btRecognition_Click);
            // 
            // btNewFile
            // 
            this.btNewFile.Image = global::NNControl.Properties.Resources.document_new;
            this.btNewFile.Location = new System.Drawing.Point(24, 6);
            this.btNewFile.Name = "btNewFile";
            this.btNewFile.Size = new System.Drawing.Size(25, 25);
            this.btNewFile.TabIndex = 16;
            this.btNewFile.UseVisualStyleBackColor = true;
            this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
            // 
            // btEllipse
            // 
            this.btEllipse.Image = global::NNControl.Properties.Resources.ellipse;
            this.btEllipse.Location = new System.Drawing.Point(270, 6);
            this.btEllipse.Name = "btEllipse";
            this.btEllipse.Size = new System.Drawing.Size(25, 25);
            this.btEllipse.TabIndex = 16;
            this.btEllipse.UseVisualStyleBackColor = true;
            this.btEllipse.Click += new System.EventHandler(this.btEllipse_Click);
            // 
            // btRectangle
            // 
            this.btRectangle.Image = global::NNControl.Properties.Resources.rectangle;
            this.btRectangle.Location = new System.Drawing.Point(239, 6);
            this.btRectangle.Name = "btRectangle";
            this.btRectangle.Size = new System.Drawing.Size(25, 25);
            this.btRectangle.TabIndex = 16;
            this.btRectangle.UseVisualStyleBackColor = true;
            this.btRectangle.Click += new System.EventHandler(this.btRectangle_Click);
            // 
            // btSave
            // 
            this.btSave.Image = global::NNControl.Properties.Resources.save_accept;
            this.btSave.Location = new System.Drawing.Point(86, 6);
            this.btSave.Name = "btSave";
            this.btSave.Size = new System.Drawing.Size(25, 25);
            this.btSave.TabIndex = 16;
            this.btSave.UseVisualStyleBackColor = true;
            this.btSave.Click += new System.EventHandler(this.btSave_Click);
            // 
            // btPencil
            // 
            this.btPencil.Image = global::NNControl.Properties.Resources.color_line;
            this.btPencil.Location = new System.Drawing.Point(209, 6);
            this.btPencil.Name = "btPencil";
            this.btPencil.Size = new System.Drawing.Size(25, 25);
            this.btPencil.TabIndex = 16;
            this.btPencil.UseVisualStyleBackColor = true;
            this.btPencil.Click += new System.EventHandler(this.btPencil_Click);
            // 
            // btLoad
            // 
            this.btLoad.Image = global::NNControl.Properties.Resources.Upload;
            this.btLoad.Location = new System.Drawing.Point(148, 6);
            this.btLoad.Name = "btLoad";
            this.btLoad.Size = new System.Drawing.Size(25, 25);
            this.btLoad.TabIndex = 16;
            this.btLoad.UseVisualStyleBackColor = true;
            this.btLoad.Click += new System.EventHandler(this.btLoad_Click);
            // 
            // btLine
            // 
            this.btLine.Image = global::NNControl.Properties.Resources.draw_line;
            this.btLine.Location = new System.Drawing.Point(179, 6);
            this.btLine.Name = "btLine";
            this.btLine.Size = new System.Drawing.Size(25, 25);
            this.btLine.TabIndex = 16;
            this.btLine.UseVisualStyleBackColor = true;
            this.btLine.Click += new System.EventHandler(this.btLine_Click);
            // 
            // btnOpen
            // 
            this.btnOpen.Image = global::NNControl.Properties.Resources.btnOpen;
            this.btnOpen.Location = new System.Drawing.Point(55, 6);
            this.btnOpen.Name = "btnOpen";
            this.btnOpen.Size = new System.Drawing.Size(25, 25);
            this.btnOpen.TabIndex = 16;
            this.btnOpen.UseVisualStyleBackColor = true;
            this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
            // 
            // tableLayoutPanel4
            // 
            this.tableLayoutPanel4.ColumnCount = 1;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel4.Controls.Add(this.panel1, 0, 0);
            this.tableLayoutPanel4.Controls.Add(this.statusStrip1, 0, 1);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 51);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.RowCount = 2;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            this.tableLayoutPanel4.Size = new System.Drawing.Size(678, 410);
            this.tableLayoutPanel4.TabIndex = 13;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.drawArea);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(3, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(672, 378);
            this.panel1.TabIndex = 0;
            // 
            // drawArea
            // 
            this.drawArea.ActiveTool = DrawTools.DrawToolType.Pointer;
            this.drawArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.drawArea.DocManager = null;
            this.drawArea.DrawNetRectangle = false;
            this.drawArea.GraphicsList = null;
            this.drawArea.Location = new System.Drawing.Point(0, 0);
            this.drawArea.Name = "drawArea";
            this.drawArea.NetRectangle = new System.Drawing.Rectangle(0, 0, 0, 0);
            this.drawArea.Size = new System.Drawing.Size(672, 378);
            this.drawArea.TabIndex = 15;
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabel});
            this.statusStrip1.Location = new System.Drawing.Point(0, 388);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(678, 22);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // toolStripStatusLabel
            // 
            this.toolStripStatusLabel.Name = "toolStripStatusLabel";
            this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Controls.Add(this.panelPreview, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 0, 1);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 48F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(218, 464);
            this.tableLayoutPanel2.TabIndex = 4;
            // 
            // panelPreview
            // 
            this.panelPreview.BackColor = System.Drawing.Color.LightSteelBlue;
            this.panelPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelPreview.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelPreview.Location = new System.Drawing.Point(3, 3);
            this.panelPreview.Name = "panelPreview";
            this.panelPreview.Size = new System.Drawing.Size(212, 42);
            this.panelPreview.TabIndex = 12;
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 1;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel3.Controls.Add(this.panel2, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.panel3, 0, 1);
            this.tableLayoutPanel3.Controls.Add(this.lbRecognizedText, 0, 2);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 51);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 3;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 48.59155F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 51.40845F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 156F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(212, 410);
            this.tableLayoutPanel3.TabIndex = 13;
            // 
            // panel2
            // 
            this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel2.Controls.Add(this.pbPreview);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(206, 117);
            this.panel2.TabIndex = 0;
            // 
            // pbPreview
            // 
            this.pbPreview.BackColor = System.Drawing.Color.White;
            this.pbPreview.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pbPreview.Location = new System.Drawing.Point(0, 0);
            this.pbPreview.Name = "pbPreview";
            this.pbPreview.Size = new System.Drawing.Size(204, 115);
            this.pbPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pbPreview.TabIndex = 0;
            this.pbPreview.TabStop = false;
            // 
            // panel3
            // 
            this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel3.Controls.Add(this.pbPartBitmap);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(3, 126);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(206, 124);
            this.panel3.TabIndex = 2;
            // 
            // pbPartBitmap
            // 
            this.pbPartBitmap.BackColor = System.Drawing.Color.White;
            this.pbPartBitmap.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pbPartBitmap.Location = new System.Drawing.Point(0, 0);
            this.pbPartBitmap.Name = "pbPartBitmap";
            this.pbPartBitmap.Size = new System.Drawing.Size(204, 122);
            this.pbPartBitmap.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pbPartBitmap.TabIndex = 3;
            this.pbPartBitmap.TabStop = false;
            // 
            // lbRecognizedText
            // 
            this.lbRecognizedText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lbRecognizedText.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbRecognizedText.FormattingEnabled = true;
            this.lbRecognizedText.ItemHeight = 39;
            this.lbRecognizedText.Location = new System.Drawing.Point(3, 256);
            this.lbRecognizedText.Name = "lbRecognizedText";
            this.lbRecognizedText.Size = new System.Drawing.Size(206, 151);
            this.lbRecognizedText.TabIndex = 3;
            // 
            // NNTestingControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "NNTestingControl";
            this.Size = new System.Drawing.Size(914, 468);
            this.Load += new System.EventHandler(this.NNTestingControl_Load);
            this.spcMain.Panel1.ResumeLayout(false);
            this.spcMain.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.spcMain)).EndInit();
            this.spcMain.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.panelMenu.ResumeLayout(false);
            this.panelNavigation.ResumeLayout(false);
            this.panelNavigation.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udPenWidth)).EndInit();
            this.tableLayoutPanel4.ResumeLayout(false);
            this.tableLayoutPanel4.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbPreview)).EndInit();
            this.panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbPartBitmap)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        protected System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        public System.Windows.Forms.Panel panelMenu;
        private System.Windows.Forms.Button btnPreview;
        private System.Windows.Forms.Button btRectangle;
        private System.Windows.Forms.Button btPencil;
        private System.Windows.Forms.Button btLoad;
        private System.Windows.Forms.Button btLine;
        private System.Windows.Forms.Button btnOpen;
        protected System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
        protected System.Windows.Forms.Panel panelPreview;
        private System.Windows.Forms.Button btNewFile;
        private System.Windows.Forms.Button btSave;
        private System.Windows.Forms.Button btEllipse;
        private System.Windows.Forms.Button btPointer;
        private System.Windows.Forms.Button btExport;
        private System.Windows.Forms.NumericUpDown udPenWidth;
        private System.Windows.Forms.Button btColor;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.PictureBox pbPreview;
        private System.Windows.Forms.Button btRecognition;
        private System.Windows.Forms.Panel panel3;
        private System.Windows.Forms.PictureBox pbPartBitmap;
        private System.Windows.Forms.Panel panelNavigation;
        private System.Windows.Forms.Label lblNavigation;
        private System.Windows.Forms.TextBox tbNavigation;
        private System.Windows.Forms.Button btnBack;
        private System.Windows.Forms.Button btnNext;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
        private System.Windows.Forms.Panel panel1;
        private DrawTools.DrawArea drawArea;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
        private System.Windows.Forms.ListBox lbRecognizedText;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Vietnam Maritime University
Vietnam Vietnam
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions