Click here to Skip to main content
15,896,118 members
Articles / Programming Languages / C#

Reconstruction of Charts from Images

Rate me:
Please Sign up or sign in to vote.
4.92/5 (13 votes)
18 Mar 2010CPOL7 min read 38K   4.1K   42  
Usage of universal framework for chart reconstruction
namespace DataPerformerUI.Labels
{
    partial class Table2DLabel
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Table2DLabel));
            this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.panelFigure = new System.Windows.Forms.Panel();
            this.panelCanterTable = new System.Windows.Forms.Panel();
            this.userControlTable2D = new DataPerformerUI.UserControls.UserControlTable2D();
            this.panelRightTable = new System.Windows.Forms.Panel();
            this.panelLeftTable = new System.Windows.Forms.Panel();
            this.panelTopTable = new System.Windows.Forms.Panel();
            this.panelBottomTable = new System.Windows.Forms.Panel();
            this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.toolStripMain = new System.Windows.Forms.ToolStrip();
            this.panelWork = new System.Windows.Forms.Panel();
            this.panelRightHigh = new System.Windows.Forms.Panel();
            this.panelLeftHigh = new System.Windows.Forms.Panel();
            this.panelTopHigh = new System.Windows.Forms.Panel();
            this.panelBootomHigh = new System.Windows.Forms.Panel();
            this.panelCenter = new System.Windows.Forms.Panel();
            this.panelRight = new System.Windows.Forms.Panel();
            this.panelLeft = new System.Windows.Forms.Panel();
            this.panelTop = new System.Windows.Forms.Panel();
            this.panelBottom = new System.Windows.Forms.Panel();
            this.panelBottomHigh = new System.Windows.Forms.Panel();
            this.checkBoxOut = new System.Windows.Forms.CheckBox();
            this.labelY = new System.Windows.Forms.Label();
            this.labelX = new System.Windows.Forms.Label();
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.panelFigure.SuspendLayout();
            this.panelCanterTable.SuspendLayout();
            this.toolStripMain.SuspendLayout();
            this.panelWork.SuspendLayout();
            this.panelCenter.SuspendLayout();
            this.panelTop.SuspendLayout();
            this.panelBottom.SuspendLayout();
            this.panelBottomHigh.SuspendLayout();
            this.SuspendLayout();
            // 
            // openToolStripButton
            // 
            this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
            this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
            this.openToolStripButton.Name = "openToolStripButton";
            this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.openToolStripButton.Text = "Open";
            this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
            // 
            // panelFigure
            // 
            this.panelFigure.Controls.Add(this.panelCanterTable);
            this.panelFigure.Controls.Add(this.panelRightTable);
            this.panelFigure.Controls.Add(this.panelLeftTable);
            this.panelFigure.Controls.Add(this.panelTopTable);
            this.panelFigure.Controls.Add(this.panelBottomTable);
            this.panelFigure.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelFigure.Location = new System.Drawing.Point(0, 0);
            this.panelFigure.Name = "panelFigure";
            this.panelFigure.Size = new System.Drawing.Size(210, 117);
            this.panelFigure.TabIndex = 15;
            // 
            // panelCanterTable
            // 
            this.panelCanterTable.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panelCanterTable.Controls.Add(this.userControlTable2D);
            this.panelCanterTable.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelCanterTable.Location = new System.Drawing.Point(0, 0);
            this.panelCanterTable.Name = "panelCanterTable";
            this.panelCanterTable.Size = new System.Drawing.Size(210, 117);
            this.panelCanterTable.TabIndex = 15;
            // 
            // userControlTable2D
            // 
            this.userControlTable2D.Dock = System.Windows.Forms.DockStyle.Fill;
            this.userControlTable2D.Location = new System.Drawing.Point(0, 0);
            this.userControlTable2D.Name = "userControlTable2D";
            this.userControlTable2D.Size = new System.Drawing.Size(206, 113);
            this.userControlTable2D.TabIndex = 0;
            // 
            // panelRightTable
            // 
            this.panelRightTable.Dock = System.Windows.Forms.DockStyle.Right;
            this.panelRightTable.Location = new System.Drawing.Point(210, 0);
            this.panelRightTable.Name = "panelRightTable";
            this.panelRightTable.Size = new System.Drawing.Size(0, 117);
            this.panelRightTable.TabIndex = 13;
            // 
            // panelLeftTable
            // 
            this.panelLeftTable.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelLeftTable.Location = new System.Drawing.Point(0, 0);
            this.panelLeftTable.Name = "panelLeftTable";
            this.panelLeftTable.Size = new System.Drawing.Size(0, 117);
            this.panelLeftTable.TabIndex = 12;
            // 
            // panelTopTable
            // 
            this.panelTopTable.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelTopTable.Location = new System.Drawing.Point(0, 0);
            this.panelTopTable.Name = "panelTopTable";
            this.panelTopTable.Size = new System.Drawing.Size(210, 0);
            this.panelTopTable.TabIndex = 11;
            // 
            // panelBottomTable
            // 
            this.panelBottomTable.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelBottomTable.Location = new System.Drawing.Point(0, 117);
            this.panelBottomTable.Name = "panelBottomTable";
            this.panelBottomTable.Size = new System.Drawing.Size(210, 0);
            this.panelBottomTable.TabIndex = 14;
            // 
            // saveToolStripButton
            // 
            this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
            this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
            this.saveToolStripButton.Name = "saveToolStripButton";
            this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.saveToolStripButton.Text = "Save";
            this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
            // 
            // toolStripMain
            // 
            this.toolStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripButton,
            this.saveToolStripButton});
            this.toolStripMain.Location = new System.Drawing.Point(0, 0);
            this.toolStripMain.Name = "toolStripMain";
            this.toolStripMain.Size = new System.Drawing.Size(212, 25);
            this.toolStripMain.TabIndex = 1;
            this.toolStripMain.Text = "toolStripMain";
            // 
            // panelWork
            // 
            this.panelWork.Controls.Add(this.panelFigure);
            this.panelWork.Controls.Add(this.panelRightHigh);
            this.panelWork.Controls.Add(this.panelLeftHigh);
            this.panelWork.Controls.Add(this.panelTopHigh);
            this.panelWork.Controls.Add(this.panelBootomHigh);
            this.panelWork.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelWork.Location = new System.Drawing.Point(1, 24);
            this.panelWork.Name = "panelWork";
            this.panelWork.Size = new System.Drawing.Size(210, 117);
            this.panelWork.TabIndex = 3;
            // 
            // panelRightHigh
            // 
            this.panelRightHigh.Dock = System.Windows.Forms.DockStyle.Right;
            this.panelRightHigh.Location = new System.Drawing.Point(210, 0);
            this.panelRightHigh.Name = "panelRightHigh";
            this.panelRightHigh.Size = new System.Drawing.Size(0, 117);
            this.panelRightHigh.TabIndex = 13;
            // 
            // panelLeftHigh
            // 
            this.panelLeftHigh.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelLeftHigh.Location = new System.Drawing.Point(0, 0);
            this.panelLeftHigh.Name = "panelLeftHigh";
            this.panelLeftHigh.Size = new System.Drawing.Size(0, 117);
            this.panelLeftHigh.TabIndex = 12;
            // 
            // panelTopHigh
            // 
            this.panelTopHigh.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelTopHigh.Location = new System.Drawing.Point(0, 0);
            this.panelTopHigh.Name = "panelTopHigh";
            this.panelTopHigh.Size = new System.Drawing.Size(210, 0);
            this.panelTopHigh.TabIndex = 11;
            // 
            // panelBootomHigh
            // 
            this.panelBootomHigh.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelBootomHigh.Location = new System.Drawing.Point(0, 117);
            this.panelBootomHigh.Name = "panelBootomHigh";
            this.panelBootomHigh.Size = new System.Drawing.Size(210, 0);
            this.panelBootomHigh.TabIndex = 14;
            // 
            // panelCenter
            // 
            this.panelCenter.Controls.Add(this.panelWork);
            this.panelCenter.Controls.Add(this.panelRight);
            this.panelCenter.Controls.Add(this.panelLeft);
            this.panelCenter.Controls.Add(this.panelTop);
            this.panelCenter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelCenter.Location = new System.Drawing.Point(0, 0);
            this.panelCenter.Name = "panelCenter";
            this.panelCenter.Size = new System.Drawing.Size(212, 141);
            this.panelCenter.TabIndex = 12;
            // 
            // panelRight
            // 
            this.panelRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.panelRight.Location = new System.Drawing.Point(211, 24);
            this.panelRight.Name = "panelRight";
            this.panelRight.Size = new System.Drawing.Size(1, 117);
            this.panelRight.TabIndex = 2;
            // 
            // panelLeft
            // 
            this.panelLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelLeft.Location = new System.Drawing.Point(0, 24);
            this.panelLeft.Name = "panelLeft";
            this.panelLeft.Size = new System.Drawing.Size(1, 117);
            this.panelLeft.TabIndex = 1;
            // 
            // panelTop
            // 
            this.panelTop.Controls.Add(this.toolStripMain);
            this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelTop.Location = new System.Drawing.Point(0, 0);
            this.panelTop.Name = "panelTop";
            this.panelTop.Size = new System.Drawing.Size(212, 24);
            this.panelTop.TabIndex = 0;
            // 
            // panelBottom
            // 
            this.panelBottom.Controls.Add(this.panelBottomHigh);
            this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelBottom.Location = new System.Drawing.Point(0, 141);
            this.panelBottom.Name = "panelBottom";
            this.panelBottom.Size = new System.Drawing.Size(212, 59);
            this.panelBottom.TabIndex = 11;
            // 
            // panelBottomHigh
            // 
            this.panelBottomHigh.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelBottomHigh.Controls.Add(this.checkBoxOut);
            this.panelBottomHigh.Controls.Add(this.labelY);
            this.panelBottomHigh.Controls.Add(this.labelX);
            this.panelBottomHigh.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelBottomHigh.Location = new System.Drawing.Point(0, 0);
            this.panelBottomHigh.Name = "panelBottomHigh";
            this.panelBottomHigh.Size = new System.Drawing.Size(212, 59);
            this.panelBottomHigh.TabIndex = 12;
            this.panelBottomHigh.Resize += new System.EventHandler(this.panelBootomHigh_Resize);
            // 
            // checkBoxOut
            // 
            this.checkBoxOut.AutoSize = true;
            this.checkBoxOut.Location = new System.Drawing.Point(6, 32);
            this.checkBoxOut.Name = "checkBoxOut";
            this.checkBoxOut.Size = new System.Drawing.Size(69, 17);
            this.checkBoxOut.TabIndex = 2;
            this.checkBoxOut.Text = "Bounded";
            this.checkBoxOut.UseVisualStyleBackColor = true;
            // 
            // labelY
            // 
            this.labelY.AutoSize = true;
            this.labelY.Location = new System.Drawing.Point(3, 16);
            this.labelY.Name = "labelY";
            this.labelY.Size = new System.Drawing.Size(20, 13);
            this.labelY.TabIndex = 1;
            this.labelY.Text = "Y=";
            // 
            // labelX
            // 
            this.labelX.AutoSize = true;
            this.labelX.Location = new System.Drawing.Point(3, 3);
            this.labelX.Name = "labelX";
            this.labelX.Size = new System.Drawing.Size(23, 13);
            this.labelX.TabIndex = 0;
            this.labelX.Text = "X =";
            // 
            // openFileDialog
            // 
            this.openFileDialog.Filter = "Function files |*.xml";
            // 
            // saveFileDialog
            // 
            this.saveFileDialog.Filter = "Function files |*.xml";
            // 
            // Table2DLabel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.panelCenter);
            this.Controls.Add(this.panelBottom);
            this.Name = "Table2DLabel";
            this.Size = new System.Drawing.Size(212, 200);
            this.panelFigure.ResumeLayout(false);
            this.panelCanterTable.ResumeLayout(false);
            this.toolStripMain.ResumeLayout(false);
            this.toolStripMain.PerformLayout();
            this.panelWork.ResumeLayout(false);
            this.panelCenter.ResumeLayout(false);
            this.panelTop.ResumeLayout(false);
            this.panelTop.PerformLayout();
            this.panelBottom.ResumeLayout(false);
            this.panelBottomHigh.ResumeLayout(false);
            this.panelBottomHigh.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.ToolStripButton openToolStripButton;
        private System.Windows.Forms.Panel panelFigure;
        private System.Windows.Forms.ToolStripButton saveToolStripButton;
        private System.Windows.Forms.ToolStrip toolStripMain;
        private System.Windows.Forms.Panel panelWork;
        private System.Windows.Forms.Panel panelRightHigh;
        private System.Windows.Forms.Panel panelLeftHigh;
        private System.Windows.Forms.Panel panelBootomHigh;
        private System.Windows.Forms.Panel panelCenter;
        private System.Windows.Forms.Panel panelRight;
        private System.Windows.Forms.Panel panelLeft;
        private System.Windows.Forms.Panel panelTop;
        private System.Windows.Forms.Panel panelBottom;
        private System.Windows.Forms.OpenFileDialog openFileDialog;
        private System.Windows.Forms.SaveFileDialog saveFileDialog;
        private System.Windows.Forms.Panel panelTopHigh;
        private System.Windows.Forms.Panel panelBottomHigh;
        private System.Windows.Forms.Label labelY;
        private System.Windows.Forms.Label labelX;
        private System.Windows.Forms.CheckBox checkBoxOut;
        private System.Windows.Forms.Panel panelCanterTable;
        private DataPerformerUI.UserControls.UserControlTable2D userControlTable2D;
        private System.Windows.Forms.Panel panelRightTable;
        private System.Windows.Forms.Panel panelLeftTable;
        private System.Windows.Forms.Panel panelTopTable;
        private System.Windows.Forms.Panel panelBottomTable;
    }
}

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
Architect
Russian Federation Russian Federation
Ph. D. Petr Ivankov worked as scientific researcher at Russian Mission Control Centre since 1978 up to 2000. Now he is engaged by Aviation training simulators http://dinamika-avia.com/ . His additional interests are:

1) Noncommutative geometry

http://front.math.ucdavis.edu/author/P.Ivankov

2) Literary work (Russian only)

http://zhurnal.lib.ru/editors/3/3d_m/

3) Scientific articles
http://arxiv.org/find/all/1/au:+Ivankov_Petr/0/1/0/all/0/1

Comments and Discussions