Click here to Skip to main content
15,881,812 members
Articles / Artificial Intelligence / Neural Networks

Multiple convolution neural networks approach for online handwriting recognition

Rate me:
Please Sign up or sign in to vote.
4.95/5 (37 votes)
9 Apr 2013CPOL8 min read 75.7K   25.1K   74  
The research focuses on the presentation of word recognition technique for an online handwriting recognition system which uses multiple component neural networks (MCNN) as the exchangeable parts of the classifier.
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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NNTestingControl));
            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.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.textSpellControl1 = new NNControl.NNTesting.TextSpellControl();
            this.multipleSpelling = new SpellChecker.MultipleSpelling(this.components);
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.wordDictionary1 = new SpellChecker.Dictionary.WordDictionary(this.components);
            this.wordDictionary2 = new SpellChecker.Dictionary.WordDictionary(this.components);
            this.wordDictionary3 = new SpellChecker.Dictionary.WordDictionary(this.components);
            ((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();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            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 = ((System.Drawing.Image)(resources.GetObject("btnPreview.Image")));
            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;
            this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
            // 
            // 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 = ((System.Drawing.Image)(resources.GetObject("btnBack.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btnNext.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btPointer.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btExport.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btRecognition.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btNewFile.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btEllipse.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btRectangle.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btSave.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btPencil.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btLoad.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btLine.Image")));
            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 = ((System.Drawing.Image)(resources.GetObject("btnOpen.Image")));
            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.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 51);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 2;
            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.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, 193);
            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, 191);
            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.tabControl1);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(3, 202);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(206, 205);
            this.panel3.TabIndex = 2;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(204, 203);
            this.tabControl1.TabIndex = 3;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.textSpellControl1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(196, 177);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Recognized text";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // textSpellControl1
            // 
            this.textSpellControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textSpellControl1.Location = new System.Drawing.Point(3, 3);
            this.textSpellControl1.Name = "textSpellControl1";
            this.textSpellControl1.Size = new System.Drawing.Size(190, 171);
            this.textSpellControl1.SpellChecker = this.multipleSpelling;
            this.textSpellControl1.SpellCheckingText = "";
            this.textSpellControl1.TabIndex = 1;
            // 
            // tabPage2
            // 
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(201, 200);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Option";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // wordDictionary2
            // 
            this.wordDictionary2.DictionaryFile = "fr-FR.dic";
            // 
            // wordDictionary3
            // 
            this.wordDictionary3.DictionaryFile = "it-IT.dic";
            // 
            // 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);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            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.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.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private TextSpellControl textSpellControl1;
        private System.Windows.Forms.TabPage tabPage2;
        private SpellChecker.MultipleSpelling multipleSpelling;
        private SpellChecker.Dictionary.WordDictionary wordDictionary1;
        private SpellChecker.Dictionary.WordDictionary wordDictionary2;
        private SpellChecker.Dictionary.WordDictionary wordDictionary3;
    }
}

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