Click here to Skip to main content
15,897,518 members
Articles / Multimedia / GDI+

Digitizer interface in C# using VBTablet

Rate me:
Please Sign up or sign in to vote.
4.28/5 (12 votes)
4 Dec 2009CPOL3 min read 61.9K   2.4K   25  
Digitzer device interface using VBTablet in C#.
namespace DigitizerInterface
{
    partial class Form1
    {
        /// <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 Windows Form 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.picDraw = new System.Windows.Forms.Panel();
            this.shpCursor = new System.Windows.Forms.Label();
            this.linX = new System.Windows.Forms.Label();
            this.linY = new System.Windows.Forms.Label();
            this.frmStatus = new System.Windows.Forms.GroupBox();
            this.prgX = new System.Windows.Forms.ProgressBar();
            this.prgPressure = new System.Windows.Forms.ProgressBar();
            this.prgY = new System.Windows.Forms.ProgressBar();
            this.prgZ = new System.Windows.Forms.ProgressBar();
            this.prgTangentPressure = new System.Windows.Forms.ProgressBar();
            this._lblLabel_13 = new System.Windows.Forms.Label();
            this.lblCursor = new System.Windows.Forms.Label();
            this.lblYaw = new System.Windows.Forms.Label();
            this.lblPitch = new System.Windows.Forms.Label();
            this.lblRoll = new System.Windows.Forms.Label();
            this.lblTwist = new System.Windows.Forms.Label();
            this.lblAltitude = new System.Windows.Forms.Label();
            this.lblAzimuth = new System.Windows.Forms.Label();
            this._lblLabel_12 = new System.Windows.Forms.Label();
            this._lblLabel_11 = new System.Windows.Forms.Label();
            this._lblLabel_10 = new System.Windows.Forms.Label();
            this._lblLabel_9 = new System.Windows.Forms.Label();
            this._lblLabel_8 = new System.Windows.Forms.Label();
            this._lblLabel_7 = new System.Windows.Forms.Label();
            this.lblTangentPressure = new System.Windows.Forms.Label();
            this._lblLabel_6 = new System.Windows.Forms.Label();
            this._lblLabel_4 = new System.Windows.Forms.Label();
            this.lblContext = new System.Windows.Forms.Label();
            this._lblButtons_7 = new System.Windows.Forms.Label();
            this._lblButtons_6 = new System.Windows.Forms.Label();
            this._lblButtons_5 = new System.Windows.Forms.Label();
            this._lblButtons_4 = new System.Windows.Forms.Label();
            this._lblButtons_3 = new System.Windows.Forms.Label();
            this._lblButtons_2 = new System.Windows.Forms.Label();
            this._lblButtons_1 = new System.Windows.Forms.Label();
            this._lblButtons_0 = new System.Windows.Forms.Label();
            this._lblLabel_5 = new System.Windows.Forms.Label();
            this.lblZ = new System.Windows.Forms.Label();
            this._lblLabel_2 = new System.Windows.Forms.Label();
            this.lblPressure = new System.Windows.Forms.Label();
            this.lblY = new System.Windows.Forms.Label();
            this.lblX = new System.Windows.Forms.Label();
            this._lblLabel_0 = new System.Windows.Forms.Label();
            this._lblLabel_1 = new System.Windows.Forms.Label();
            this._lblLabel_3 = new System.Windows.Forms.Label();
            this.chkAntiAlias = new System.Windows.Forms.CheckBox();
            this.chkSplit = new System.Windows.Forms.CheckBox();
            this.chkInterface = new System.Windows.Forms.CheckBox();
            this.Connect = new System.Windows.Forms.Button();
            this.Enable = new System.Windows.Forms.Button();
            this.chkDigitise = new System.Windows.Forms.CheckBox();
            this.sldGranularity = new System.Windows.Forms.TrackBar();
            this.Disconnect = new System.Windows.Forms.Button();
            this.Disable = new System.Windows.Forms.Button();
            this.picDraw.SuspendLayout();
            this.frmStatus.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.sldGranularity)).BeginInit();
            this.SuspendLayout();
            // 
            // picDraw
            // 
            this.picDraw.BackColor = System.Drawing.Color.White;
            this.picDraw.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.picDraw.Controls.Add(this.shpCursor);
            this.picDraw.Controls.Add(this.linX);
            this.picDraw.Controls.Add(this.linY);
            this.picDraw.Cursor = System.Windows.Forms.Cursors.Default;
            this.picDraw.ForeColor = System.Drawing.Color.Black;
            this.picDraw.Location = new System.Drawing.Point(381, 24);
            this.picDraw.Name = "picDraw";
            this.picDraw.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.picDraw.Size = new System.Drawing.Size(423, 337);
            this.picDraw.TabIndex = 44;
            this.picDraw.TabStop = true;
            // 
            // shpCursor
            // 
            this.shpCursor.BackColor = System.Drawing.Color.Red;
            this.shpCursor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.shpCursor.ForeColor = System.Drawing.Color.Black;
            this.shpCursor.Location = new System.Drawing.Point(174, 164);
            this.shpCursor.Name = "shpCursor";
            this.shpCursor.Size = new System.Drawing.Size(16, 15);
            this.shpCursor.TabIndex = 0;
            this.shpCursor.Text = "shpCursor";
            // 
            // linX
            // 
            this.linX.BackColor = System.Drawing.Color.Black;
            this.linX.Location = new System.Drawing.Point(1, 12);
            this.linX.Name = "linX";
            this.linX.Size = new System.Drawing.Size(24, 1);
            this.linX.TabIndex = 1;
            // 
            // linY
            // 
            this.linY.BackColor = System.Drawing.Color.Black;
            this.linY.Location = new System.Drawing.Point(12, 1);
            this.linY.Name = "linY";
            this.linY.Size = new System.Drawing.Size(1, 23);
            this.linY.TabIndex = 2;
            // 
            // frmStatus
            // 
            this.frmStatus.BackColor = System.Drawing.SystemColors.Control;
            this.frmStatus.Controls.Add(this.sldGranularity);
            this.frmStatus.Controls.Add(this.prgX);
            this.frmStatus.Controls.Add(this.prgPressure);
            this.frmStatus.Controls.Add(this.prgY);
            this.frmStatus.Controls.Add(this.prgZ);
            this.frmStatus.Controls.Add(this.prgTangentPressure);
            this.frmStatus.Controls.Add(this._lblLabel_13);
            this.frmStatus.Controls.Add(this.lblCursor);
            this.frmStatus.Controls.Add(this.lblYaw);
            this.frmStatus.Controls.Add(this.lblPitch);
            this.frmStatus.Controls.Add(this.lblRoll);
            this.frmStatus.Controls.Add(this.lblTwist);
            this.frmStatus.Controls.Add(this.lblAltitude);
            this.frmStatus.Controls.Add(this.lblAzimuth);
            this.frmStatus.Controls.Add(this._lblLabel_12);
            this.frmStatus.Controls.Add(this._lblLabel_11);
            this.frmStatus.Controls.Add(this._lblLabel_10);
            this.frmStatus.Controls.Add(this._lblLabel_9);
            this.frmStatus.Controls.Add(this._lblLabel_8);
            this.frmStatus.Controls.Add(this._lblLabel_7);
            this.frmStatus.Controls.Add(this.lblTangentPressure);
            this.frmStatus.Controls.Add(this._lblLabel_6);
            this.frmStatus.Controls.Add(this._lblLabel_4);
            this.frmStatus.Controls.Add(this.lblContext);
            this.frmStatus.Controls.Add(this._lblButtons_7);
            this.frmStatus.Controls.Add(this._lblButtons_6);
            this.frmStatus.Controls.Add(this._lblButtons_5);
            this.frmStatus.Controls.Add(this._lblButtons_4);
            this.frmStatus.Controls.Add(this._lblButtons_3);
            this.frmStatus.Controls.Add(this._lblButtons_2);
            this.frmStatus.Controls.Add(this._lblButtons_1);
            this.frmStatus.Controls.Add(this._lblButtons_0);
            this.frmStatus.Controls.Add(this._lblLabel_5);
            this.frmStatus.Controls.Add(this.lblZ);
            this.frmStatus.Controls.Add(this._lblLabel_2);
            this.frmStatus.Controls.Add(this.lblPressure);
            this.frmStatus.Controls.Add(this.lblY);
            this.frmStatus.Controls.Add(this.lblX);
            this.frmStatus.Controls.Add(this._lblLabel_0);
            this.frmStatus.Controls.Add(this._lblLabel_1);
            this.frmStatus.Controls.Add(this._lblLabel_3);
            this.frmStatus.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.frmStatus.ForeColor = System.Drawing.SystemColors.ControlText;
            this.frmStatus.Location = new System.Drawing.Point(37, 183);
            this.frmStatus.Name = "frmStatus";
            this.frmStatus.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.frmStatus.Size = new System.Drawing.Size(271, 280);
            this.frmStatus.TabIndex = 45;
            this.frmStatus.TabStop = false;
            this.frmStatus.Text = "Current Status";
            // 
            // prgX
            // 
            this.prgX.Location = new System.Drawing.Point(54, 20);
            this.prgX.Name = "prgX";
            this.prgX.Size = new System.Drawing.Size(177, 17);
            this.prgX.TabIndex = 32;
            // 
            // prgPressure
            // 
            this.prgPressure.Location = new System.Drawing.Point(54, 96);
            this.prgPressure.Name = "prgPressure";
            this.prgPressure.Size = new System.Drawing.Size(177, 17);
            this.prgPressure.TabIndex = 30;
            // 
            // prgY
            // 
            this.prgY.Location = new System.Drawing.Point(54, 42);
            this.prgY.Name = "prgY";
            this.prgY.Size = new System.Drawing.Size(177, 17);
            this.prgY.TabIndex = 31;
            // 
            // prgZ
            // 
            this.prgZ.Location = new System.Drawing.Point(54, 68);
            this.prgZ.Name = "prgZ";
            this.prgZ.Size = new System.Drawing.Size(177, 17);
            this.prgZ.TabIndex = 45;
            // 
            // prgTangentPressure
            // 
            this.prgTangentPressure.Location = new System.Drawing.Point(54, 122);
            this.prgTangentPressure.Name = "prgTangentPressure";
            this.prgTangentPressure.Size = new System.Drawing.Size(177, 17);
            this.prgTangentPressure.TabIndex = 86;
            // 
            // _lblLabel_13
            // 
            this._lblLabel_13.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_13.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_13.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_13.Location = new System.Drawing.Point(182, 184);
            this._lblLabel_13.Name = "_lblLabel_13";
            this._lblLabel_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_13.Size = new System.Drawing.Size(41, 13);
            this._lblLabel_13.TabIndex = 120;
            this._lblLabel_13.Text = "Cursor:";
            // 
            // lblCursor
            // 
            this.lblCursor.BackColor = System.Drawing.SystemColors.Control;
            this.lblCursor.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblCursor.Enabled = false;
            this.lblCursor.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblCursor.Location = new System.Drawing.Point(220, 184);
            this.lblCursor.Name = "lblCursor";
            this.lblCursor.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblCursor.Size = new System.Drawing.Size(28, 13);
            this.lblCursor.TabIndex = 119;
            this.lblCursor.Text = "0";
            this.lblCursor.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblYaw
            // 
            this.lblYaw.BackColor = System.Drawing.SystemColors.Control;
            this.lblYaw.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblYaw.Enabled = false;
            this.lblYaw.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblYaw.Location = new System.Drawing.Point(218, 166);
            this.lblYaw.Name = "lblYaw";
            this.lblYaw.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblYaw.Size = new System.Drawing.Size(29, 17);
            this.lblYaw.TabIndex = 99;
            this.lblYaw.Text = "0";
            this.lblYaw.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblPitch
            // 
            this.lblPitch.BackColor = System.Drawing.SystemColors.Control;
            this.lblPitch.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblPitch.Enabled = false;
            this.lblPitch.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPitch.Location = new System.Drawing.Point(138, 166);
            this.lblPitch.Name = "lblPitch";
            this.lblPitch.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblPitch.Size = new System.Drawing.Size(29, 17);
            this.lblPitch.TabIndex = 98;
            this.lblPitch.Text = "0";
            this.lblPitch.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblRoll
            // 
            this.lblRoll.BackColor = System.Drawing.SystemColors.Control;
            this.lblRoll.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblRoll.Enabled = false;
            this.lblRoll.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblRoll.Location = new System.Drawing.Point(54, 166);
            this.lblRoll.Name = "lblRoll";
            this.lblRoll.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblRoll.Size = new System.Drawing.Size(29, 17);
            this.lblRoll.TabIndex = 97;
            this.lblRoll.Text = "0";
            this.lblRoll.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblTwist
            // 
            this.lblTwist.BackColor = System.Drawing.SystemColors.Control;
            this.lblTwist.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblTwist.Enabled = false;
            this.lblTwist.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblTwist.Location = new System.Drawing.Point(218, 148);
            this.lblTwist.Name = "lblTwist";
            this.lblTwist.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblTwist.Size = new System.Drawing.Size(29, 17);
            this.lblTwist.TabIndex = 96;
            this.lblTwist.Text = "0";
            this.lblTwist.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblAltitude
            // 
            this.lblAltitude.BackColor = System.Drawing.SystemColors.Control;
            this.lblAltitude.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblAltitude.Enabled = false;
            this.lblAltitude.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblAltitude.Location = new System.Drawing.Point(138, 148);
            this.lblAltitude.Name = "lblAltitude";
            this.lblAltitude.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblAltitude.Size = new System.Drawing.Size(29, 17);
            this.lblAltitude.TabIndex = 95;
            this.lblAltitude.Text = "0";
            this.lblAltitude.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblAzimuth
            // 
            this.lblAzimuth.BackColor = System.Drawing.SystemColors.Control;
            this.lblAzimuth.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblAzimuth.Enabled = false;
            this.lblAzimuth.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblAzimuth.Location = new System.Drawing.Point(54, 148);
            this.lblAzimuth.Name = "lblAzimuth";
            this.lblAzimuth.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblAzimuth.Size = new System.Drawing.Size(29, 17);
            this.lblAzimuth.TabIndex = 94;
            this.lblAzimuth.Text = "0";
            this.lblAzimuth.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // _lblLabel_12
            // 
            this._lblLabel_12.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_12.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_12.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_12.Location = new System.Drawing.Point(190, 166);
            this._lblLabel_12.Name = "_lblLabel_12";
            this._lblLabel_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_12.Size = new System.Drawing.Size(29, 13);
            this._lblLabel_12.TabIndex = 93;
            this._lblLabel_12.Text = "Yaw:";
            // 
            // _lblLabel_11
            // 
            this._lblLabel_11.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_11.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_11.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_11.Location = new System.Drawing.Point(102, 166);
            this._lblLabel_11.Name = "_lblLabel_11";
            this._lblLabel_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_11.Size = new System.Drawing.Size(34, 13);
            this._lblLabel_11.TabIndex = 92;
            this._lblLabel_11.Text = "Pitch:";
            // 
            // _lblLabel_10
            // 
            this._lblLabel_10.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_10.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_10.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_10.Location = new System.Drawing.Point(18, 166);
            this._lblLabel_10.Name = "_lblLabel_10";
            this._lblLabel_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_10.Size = new System.Drawing.Size(30, 13);
            this._lblLabel_10.TabIndex = 91;
            this._lblLabel_10.Text = "Roll:";
            // 
            // _lblLabel_9
            // 
            this._lblLabel_9.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_9.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_9.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_9.Location = new System.Drawing.Point(186, 148);
            this._lblLabel_9.Name = "_lblLabel_9";
            this._lblLabel_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_9.Size = new System.Drawing.Size(34, 13);
            this._lblLabel_9.TabIndex = 90;
            this._lblLabel_9.Text = "Twist:";
            // 
            // _lblLabel_8
            // 
            this._lblLabel_8.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_8.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_8.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_8.Location = new System.Drawing.Point(96, 148);
            this._lblLabel_8.Name = "_lblLabel_8";
            this._lblLabel_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_8.Size = new System.Drawing.Size(48, 13);
            this._lblLabel_8.TabIndex = 89;
            this._lblLabel_8.Text = "Altitude:";
            // 
            // _lblLabel_7
            // 
            this._lblLabel_7.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_7.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_7.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_7.Location = new System.Drawing.Point(8, 148);
            this._lblLabel_7.Name = "_lblLabel_7";
            this._lblLabel_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_7.Size = new System.Drawing.Size(48, 13);
            this._lblLabel_7.TabIndex = 88;
            this._lblLabel_7.Text = "Azimuth:";
            // 
            // lblTangentPressure
            // 
            this.lblTangentPressure.BackColor = System.Drawing.SystemColors.Control;
            this.lblTangentPressure.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblTangentPressure.Enabled = false;
            this.lblTangentPressure.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblTangentPressure.Location = new System.Drawing.Point(234, 124);
            this.lblTangentPressure.Name = "lblTangentPressure";
            this.lblTangentPressure.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblTangentPressure.Size = new System.Drawing.Size(34, 17);
            this.lblTangentPressure.TabIndex = 87;
            this.lblTangentPressure.Text = "0";
            this.lblTangentPressure.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // _lblLabel_6
            // 
            this._lblLabel_6.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_6.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_6.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_6.Location = new System.Drawing.Point(4, 118);
            this._lblLabel_6.Name = "_lblLabel_6";
            this._lblLabel_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_6.Size = new System.Drawing.Size(52, 31);
            this._lblLabel_6.TabIndex = 85;
            this._lblLabel_6.Text = "Pressure (tangent)";
            // 
            // _lblLabel_4
            // 
            this._lblLabel_4.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_4.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_4.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_4.Location = new System.Drawing.Point(8, 204);
            this._lblLabel_4.Name = "_lblLabel_4";
            this._lblLabel_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_4.Size = new System.Drawing.Size(66, 17);
            this._lblLabel_4.TabIndex = 59;
            this._lblLabel_4.Text = "Granularity:";
            // 
            // lblContext
            // 
            this.lblContext.BackColor = System.Drawing.SystemColors.Control;
            this.lblContext.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblContext.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblContext.Location = new System.Drawing.Point(4, 232);
            this.lblContext.Name = "lblContext";
            this.lblContext.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblContext.Size = new System.Drawing.Size(264, 21);
            this.lblContext.TabIndex = 58;
            // 
            // _lblButtons_7
            // 
            this._lblButtons_7.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_7.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_7.Enabled = false;
            this._lblButtons_7.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_7.Location = new System.Drawing.Point(164, 184);
            this._lblButtons_7.Name = "_lblButtons_7";
            this._lblButtons_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_7.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_7.TabIndex = 57;
            this._lblButtons_7.Text = "8";
            // 
            // _lblButtons_6
            // 
            this._lblButtons_6.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_6.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_6.Enabled = false;
            this._lblButtons_6.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_6.Location = new System.Drawing.Point(148, 184);
            this._lblButtons_6.Name = "_lblButtons_6";
            this._lblButtons_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_6.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_6.TabIndex = 56;
            this._lblButtons_6.Text = "7";
            // 
            // _lblButtons_5
            // 
            this._lblButtons_5.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_5.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_5.Enabled = false;
            this._lblButtons_5.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_5.Location = new System.Drawing.Point(132, 184);
            this._lblButtons_5.Name = "_lblButtons_5";
            this._lblButtons_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_5.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_5.TabIndex = 55;
            this._lblButtons_5.Text = "6";
            // 
            // _lblButtons_4
            // 
            this._lblButtons_4.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_4.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_4.Enabled = false;
            this._lblButtons_4.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_4.Location = new System.Drawing.Point(116, 184);
            this._lblButtons_4.Name = "_lblButtons_4";
            this._lblButtons_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_4.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_4.TabIndex = 54;
            this._lblButtons_4.Text = "5";
            // 
            // _lblButtons_3
            // 
            this._lblButtons_3.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_3.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_3.Enabled = false;
            this._lblButtons_3.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_3.Location = new System.Drawing.Point(100, 184);
            this._lblButtons_3.Name = "_lblButtons_3";
            this._lblButtons_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_3.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_3.TabIndex = 53;
            this._lblButtons_3.Text = "4";
            // 
            // _lblButtons_2
            // 
            this._lblButtons_2.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_2.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_2.Enabled = false;
            this._lblButtons_2.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_2.Location = new System.Drawing.Point(84, 184);
            this._lblButtons_2.Name = "_lblButtons_2";
            this._lblButtons_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_2.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_2.TabIndex = 52;
            this._lblButtons_2.Text = "3";
            // 
            // _lblButtons_1
            // 
            this._lblButtons_1.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_1.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_1.Enabled = false;
            this._lblButtons_1.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_1.Location = new System.Drawing.Point(68, 184);
            this._lblButtons_1.Name = "_lblButtons_1";
            this._lblButtons_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_1.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_1.TabIndex = 51;
            this._lblButtons_1.Text = "2";
            // 
            // _lblButtons_0
            // 
            this._lblButtons_0.BackColor = System.Drawing.SystemColors.Control;
            this._lblButtons_0.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblButtons_0.Enabled = false;
            this._lblButtons_0.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblButtons_0.Location = new System.Drawing.Point(52, 184);
            this._lblButtons_0.Name = "_lblButtons_0";
            this._lblButtons_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblButtons_0.Size = new System.Drawing.Size(13, 17);
            this._lblButtons_0.TabIndex = 50;
            this._lblButtons_0.Text = "1";
            // 
            // _lblLabel_5
            // 
            this._lblLabel_5.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_5.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_5.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_5.Location = new System.Drawing.Point(8, 184);
            this._lblLabel_5.Name = "_lblLabel_5";
            this._lblLabel_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_5.Size = new System.Drawing.Size(41, 13);
            this._lblLabel_5.TabIndex = 49;
            this._lblLabel_5.Text = "Buttons:";
            // 
            // lblZ
            // 
            this.lblZ.BackColor = System.Drawing.SystemColors.Control;
            this.lblZ.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblZ.Enabled = false;
            this.lblZ.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblZ.Location = new System.Drawing.Point(234, 70);
            this.lblZ.Name = "lblZ";
            this.lblZ.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblZ.Size = new System.Drawing.Size(34, 17);
            this.lblZ.TabIndex = 46;
            this.lblZ.Text = "0";
            this.lblZ.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // _lblLabel_2
            // 
            this._lblLabel_2.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_2.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_2.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_2.Location = new System.Drawing.Point(20, 68);
            this._lblLabel_2.Name = "_lblLabel_2";
            this._lblLabel_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_2.Size = new System.Drawing.Size(13, 13);
            this._lblLabel_2.TabIndex = 44;
            this._lblLabel_2.Text = "Z";
            // 
            // lblPressure
            // 
            this.lblPressure.BackColor = System.Drawing.SystemColors.Control;
            this.lblPressure.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblPressure.Enabled = false;
            this.lblPressure.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblPressure.Location = new System.Drawing.Point(234, 96);
            this.lblPressure.Name = "lblPressure";
            this.lblPressure.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblPressure.Size = new System.Drawing.Size(34, 17);
            this.lblPressure.TabIndex = 38;
            this.lblPressure.Text = "0";
            this.lblPressure.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblY
            // 
            this.lblY.BackColor = System.Drawing.SystemColors.Control;
            this.lblY.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblY.Enabled = false;
            this.lblY.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblY.Location = new System.Drawing.Point(234, 46);
            this.lblY.Name = "lblY";
            this.lblY.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblY.Size = new System.Drawing.Size(34, 17);
            this.lblY.TabIndex = 37;
            this.lblY.Text = "0";
            this.lblY.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblX
            // 
            this.lblX.BackColor = System.Drawing.SystemColors.Control;
            this.lblX.Cursor = System.Windows.Forms.Cursors.Default;
            this.lblX.Enabled = false;
            this.lblX.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblX.Location = new System.Drawing.Point(232, 22);
            this.lblX.Name = "lblX";
            this.lblX.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblX.Size = new System.Drawing.Size(34, 17);
            this.lblX.TabIndex = 36;
            this.lblX.Text = "0";
            this.lblX.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // _lblLabel_0
            // 
            this._lblLabel_0.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_0.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_0.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_0.Location = new System.Drawing.Point(20, 20);
            this._lblLabel_0.Name = "_lblLabel_0";
            this._lblLabel_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_0.Size = new System.Drawing.Size(13, 17);
            this._lblLabel_0.TabIndex = 35;
            this._lblLabel_0.Text = "X";
            // 
            // _lblLabel_1
            // 
            this._lblLabel_1.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_1.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_1.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_1.Location = new System.Drawing.Point(20, 44);
            this._lblLabel_1.Name = "_lblLabel_1";
            this._lblLabel_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_1.Size = new System.Drawing.Size(13, 17);
            this._lblLabel_1.TabIndex = 34;
            this._lblLabel_1.Text = "Y";
            // 
            // _lblLabel_3
            // 
            this._lblLabel_3.BackColor = System.Drawing.SystemColors.Control;
            this._lblLabel_3.Cursor = System.Windows.Forms.Cursors.Default;
            this._lblLabel_3.ForeColor = System.Drawing.SystemColors.ControlText;
            this._lblLabel_3.Location = new System.Drawing.Point(4, 88);
            this._lblLabel_3.Name = "_lblLabel_3";
            this._lblLabel_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this._lblLabel_3.Size = new System.Drawing.Size(50, 29);
            this._lblLabel_3.TabIndex = 33;
            this._lblLabel_3.Text = "Pressure (normal)";
            this._lblLabel_3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // chkAntiAlias
            // 
            this.chkAntiAlias.BackColor = System.Drawing.SystemColors.Control;
            this.chkAntiAlias.Cursor = System.Windows.Forms.Cursors.Default;
            this.chkAntiAlias.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkAntiAlias.Location = new System.Drawing.Point(217, 27);
            this.chkAntiAlias.Name = "chkAntiAlias";
            this.chkAntiAlias.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.chkAntiAlias.Size = new System.Drawing.Size(68, 21);
            this.chkAntiAlias.TabIndex = 144;
            this.chkAntiAlias.Text = "Antialias";
            this.chkAntiAlias.UseVisualStyleBackColor = false;
            // 
            // chkSplit
            // 
            this.chkSplit.BackColor = System.Drawing.SystemColors.Control;
            this.chkSplit.Cursor = System.Windows.Forms.Cursors.Default;
            this.chkSplit.Enabled = false;
            this.chkSplit.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkSplit.Location = new System.Drawing.Point(217, 47);
            this.chkSplit.Name = "chkSplit";
            this.chkSplit.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.chkSplit.Size = new System.Drawing.Size(47, 19);
            this.chkSplit.TabIndex = 143;
            this.chkSplit.Text = "Split";
            this.chkSplit.UseVisualStyleBackColor = false;
            // 
            // chkInterface
            // 
            this.chkInterface.BackColor = System.Drawing.SystemColors.Control;
            this.chkInterface.Cursor = System.Windows.Forms.Cursors.Default;
            this.chkInterface.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkInterface.Location = new System.Drawing.Point(217, 91);
            this.chkInterface.Name = "chkInterface";
            this.chkInterface.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.chkInterface.Size = new System.Drawing.Size(104, 17);
            this.chkInterface.TabIndex = 142;
            this.chkInterface.Text = "Interface mode";
            this.chkInterface.UseVisualStyleBackColor = false;
            // 
            // Connect
            // 
            this.Connect.BackColor = System.Drawing.SystemColors.Control;
            this.Connect.Cursor = System.Windows.Forms.Cursors.Default;
            this.Connect.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.Connect.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Connect.Location = new System.Drawing.Point(26, 26);
            this.Connect.Name = "Connect";
            this.Connect.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.Connect.Size = new System.Drawing.Size(85, 37);
            this.Connect.TabIndex = 141;
            this.Connect.Text = "Connect";
            this.Connect.UseVisualStyleBackColor = false;
            this.Connect.Click += new System.EventHandler(this.cmdConnect_Click);
            // 
            // Enable
            // 
            this.Enable.BackColor = System.Drawing.SystemColors.Control;
            this.Enable.Cursor = System.Windows.Forms.Cursors.Default;
            this.Enable.Enabled = false;
            this.Enable.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.Enable.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Enable.Location = new System.Drawing.Point(28, 68);
            this.Enable.Name = "Enable";
            this.Enable.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.Enable.Size = new System.Drawing.Size(83, 37);
            this.Enable.TabIndex = 140;
            this.Enable.Text = "Enable";
            this.Enable.UseVisualStyleBackColor = false;
            this.Enable.Click += new System.EventHandler(this.Enable_Click);
            // 
            // chkDigitise
            // 
            this.chkDigitise.BackColor = System.Drawing.SystemColors.Control;
            this.chkDigitise.Cursor = System.Windows.Forms.Cursors.Default;
            this.chkDigitise.Enabled = false;
            this.chkDigitise.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkDigitise.Location = new System.Drawing.Point(217, 69);
            this.chkDigitise.Name = "chkDigitise";
            this.chkDigitise.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.chkDigitise.Size = new System.Drawing.Size(92, 17);
            this.chkDigitise.TabIndex = 139;
            this.chkDigitise.Text = "Digitise Mode";
            this.chkDigitise.UseVisualStyleBackColor = false;
            // 
            // sldGranularity
            // 
            this.sldGranularity.Location = new System.Drawing.Point(70, 204);
            this.sldGranularity.Name = "sldGranularity";
            this.sldGranularity.Size = new System.Drawing.Size(177, 45);
            this.sldGranularity.TabIndex = 121;
            // 
            // Disconnect
            // 
            this.Disconnect.BackColor = System.Drawing.SystemColors.Control;
            this.Disconnect.Cursor = System.Windows.Forms.Cursors.Default;
            this.Disconnect.Enabled = false;
            this.Disconnect.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.Disconnect.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Disconnect.Location = new System.Drawing.Point(117, 26);
            this.Disconnect.Name = "Disconnect";
            this.Disconnect.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.Disconnect.Size = new System.Drawing.Size(83, 37);
            this.Disconnect.TabIndex = 145;
            this.Disconnect.Text = "Disconnect";
            this.Disconnect.UseVisualStyleBackColor = false;
            this.Disconnect.Click += new System.EventHandler(this.Disconnect_Click);
            // 
            // Disable
            // 
            this.Disable.BackColor = System.Drawing.SystemColors.Control;
            this.Disable.Cursor = System.Windows.Forms.Cursors.Default;
            this.Disable.Enabled = false;
            this.Disable.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.Disable.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Disable.Location = new System.Drawing.Point(117, 70);
            this.Disable.Name = "Disable";
            this.Disable.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.Disable.Size = new System.Drawing.Size(83, 37);
            this.Disable.TabIndex = 146;
            this.Disable.Text = "Disable";
            this.Disable.UseVisualStyleBackColor = false;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(816, 475);
            this.Controls.Add(this.Disable);
            this.Controls.Add(this.Disconnect);
            this.Controls.Add(this.chkAntiAlias);
            this.Controls.Add(this.chkSplit);
            this.Controls.Add(this.chkInterface);
            this.Controls.Add(this.Connect);
            this.Controls.Add(this.Enable);
            this.Controls.Add(this.chkDigitise);
            this.Controls.Add(this.frmStatus);
            this.Controls.Add(this.picDraw);
            this.Name = "Form1";
            this.Text = "Digitizer Interface for Signature Scanner";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.picDraw.ResumeLayout(false);
            this.frmStatus.ResumeLayout(false);
            this.frmStatus.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.sldGranularity)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        public System.Windows.Forms.Panel picDraw;
        public System.Windows.Forms.Label shpCursor;
        public System.Windows.Forms.Label linX;
        public System.Windows.Forms.Label linY;
        public System.Windows.Forms.GroupBox frmStatus;
        public System.Windows.Forms.ProgressBar prgX;
        public System.Windows.Forms.ProgressBar prgPressure;
        public System.Windows.Forms.ProgressBar prgY;
        public System.Windows.Forms.ProgressBar prgZ;
        public System.Windows.Forms.ProgressBar prgTangentPressure;
        public System.Windows.Forms.Label _lblLabel_13;
        public System.Windows.Forms.Label lblCursor;
        public System.Windows.Forms.Label lblYaw;
        public System.Windows.Forms.Label lblPitch;
        public System.Windows.Forms.Label lblRoll;
        public System.Windows.Forms.Label lblTwist;
        public System.Windows.Forms.Label lblAltitude;
        public System.Windows.Forms.Label lblAzimuth;
        public System.Windows.Forms.Label _lblLabel_12;
        public System.Windows.Forms.Label _lblLabel_11;
        public System.Windows.Forms.Label _lblLabel_10;
        public System.Windows.Forms.Label _lblLabel_9;
        public System.Windows.Forms.Label _lblLabel_8;
        public System.Windows.Forms.Label _lblLabel_7;
        public System.Windows.Forms.Label lblTangentPressure;
        public System.Windows.Forms.Label _lblLabel_6;
        public System.Windows.Forms.Label _lblLabel_4;
        public System.Windows.Forms.Label lblContext;
        public System.Windows.Forms.Label _lblButtons_7;
        public System.Windows.Forms.Label _lblButtons_6;
        public System.Windows.Forms.Label _lblButtons_5;
        public System.Windows.Forms.Label _lblButtons_4;
        public System.Windows.Forms.Label _lblButtons_3;
        public System.Windows.Forms.Label _lblButtons_2;
        public System.Windows.Forms.Label _lblButtons_1;
        public System.Windows.Forms.Label _lblButtons_0;
        public System.Windows.Forms.Label _lblLabel_5;
        public System.Windows.Forms.Label lblZ;
        public System.Windows.Forms.Label _lblLabel_2;
        public System.Windows.Forms.Label lblPressure;
        public System.Windows.Forms.Label lblY;
        public System.Windows.Forms.Label lblX;
        public System.Windows.Forms.Label _lblLabel_0;
        public System.Windows.Forms.Label _lblLabel_1;
        public System.Windows.Forms.Label _lblLabel_3;
        public System.Windows.Forms.CheckBox chkAntiAlias;
        public System.Windows.Forms.CheckBox chkSplit;
        public System.Windows.Forms.CheckBox chkInterface;
        public System.Windows.Forms.Button Connect;
        public System.Windows.Forms.Button Enable;
        public System.Windows.Forms.CheckBox chkDigitise;
        public System.Windows.Forms.TrackBar sldGranularity;
        public System.Windows.Forms.Button Disconnect;
        public System.Windows.Forms.Button Disable;
    }
}

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)



Comments and Discussions