示例#1
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="originalStrokes">Original strokes to fragment</param>
        /// <param name="CM">CommandManager for the panel</param>
        public FragmentPanel(Sketch.Stroke[] strokes, Dictionary <Sketch.Stroke, List <int> > strokeToCorners, CommandManager CM)
        {
            // Set our CommandManager
            this.CM = CM;

            // Initialize the Hashtable we'll use to keep track of out split points
            this.strokeToCorners = strokeToCorners;

            // Set some stylistic properties
            this.AutoScroll  = true;
            this.BackColor   = System.Drawing.Color.White;
            this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Dock        = System.Windows.Forms.DockStyle.Fill;

            // Allow the ink to be resized
            this.Resize += new EventHandler(FragmentPanel_Resize);

            // Initialize the InkPicture
            sketchInk                 = new InkPicture();
            sketchInk.EditingMode     = InkOverlayEditingMode.Ink;
            sketchInk.SelectionMoved += new InkOverlaySelectionMovedEventHandler(sketchInk_SelectionMoved);

            // Setup the Ink in the InkPicture
            this.strokes = (Sketch.Stroke[])strokes.Clone();
            for (int i = 0; i < strokes.Length; i++)
            {
                System.Drawing.Point[] pts = new System.Drawing.Point[strokes[i].Points.Length];
                for (int k = 0; k < pts.Length; k++)
                {
                    pts[k] = new System.Drawing.Point((int)(strokes[i].Points[k].X),
                                                      (int)(strokes[i].Points[k].Y));
                }

                sketchInk.Ink.CreateStroke(pts);
            }

            sketchInk.DefaultDrawingAttributes.Color = Color.Red;
            sketchInk.Stroke += new InkCollectorStrokeEventHandler(sketchInk_Stroke);

            // Give the panel the mInk component
            this.Controls.Add(sketchInk);

            // Another layer of ink overlaying the current
            // Used when drawing the fragment points
            overlayInk = new InkOverlay(sketchInk);

            // Move center the ink's origin to the top-left corner
            this.inkMovedX = -sketchInk.Ink.GetBoundingBox().X;
            this.inkMovedY = -sketchInk.Ink.GetBoundingBox().Y;
            sketchInk.Renderer.Move(this.inkMovedX, this.inkMovedY);
            overlayInk.Renderer.Move(this.inkMovedX, this.inkMovedY);

            // Initialize the overlay panel with the fragmented corners
            InitFragPtAttributes(Color.Red, 200);
            InitFragmentCorners();

            // Allow the user to draw where the fragment points should be
            //overlayInk.EditingMode = InkOverlayEditingMode.Ink;
            //overlayInk.Enabled = true;
        }
        /// <summary>
        /// Constructor.  Creates an empty Sketch object and
        /// synchronizes Sketch with changes to <tt>inkPic</tt>'s
        /// Ink.
        /// </summary>
        /// <param name="inkPic">The InkPicture with which to synchronize</param>
        public InkPictureSketch(InkPicture inkPic)
            : base(inkPic.Ink)
        {
            mInkPicture = inkPic;

            mInkPicture.InkEnabled = false;
            mInkPicture.Ink        = base.mInk;
            mInkPicture.InkEnabled = true;

            attachToInkPicture();
        }
示例#3
0
        private void UpdateControl()
        {
            lblInfo.Text = string.Format("All signatures will be embedded into the word document, which will be converted to PDF format.{0}Signatures will not be saved in the word document.", Environment.NewLine);
            int signatures = 0;
            //Select only unique tags - from this list only 2 will be selected (SIGNATUREF1,SIGNATUREF2))
            //F2:SignatureF1, SIGNATUREF1, F2 |
            //F2:SignatureF2, SIGNATUREF2, F2 |
            //Deponent Footer, SIGNATUREF1, F1 |
            //Witnessed By Footer, SIGNATUREF2, F1 |

            List <SignatureInfo> uniqueList = documentEditProperties.SignatureInfoList.GroupBy(x => x.Tag).Select(y => y.Where(x => !x.Title.Contains(":")).First()).ToList();

            this.pnlSignatures.SuspendLayout();
            Size signatureSize      = GetSignatureBoxSize();
            Size signatureLabelSize = GetSignatureLabelsSize();
            int  firstControlStep   = 20;

            Int32.TryParse(ConfigurationManager.AppSettings["StepGap"].ToString(), out firstControlStep);
            foreach (SignatureInfo item in uniqueList)
            {
                signatures++;
                item.Number = signatures;

                Label signatureLbl = new System.Windows.Forms.Label();
                signatureLbl.Name     = string.Concat(LBL_CTRL_NAME, signatures);
                signatureLbl.Location = new Point(13, firstControlStep + 54 + (signatureSize.Height + 20) * (signatures - 1));
                signatureLbl.Size     = signatureLabelSize;
                signatureLbl.Text     = string.Concat(item.Title, ":");

                Microsoft.Ink.InkPicture inkSignature = new Microsoft.Ink.InkPicture();
                inkSignature.Name        = string.Concat(INC_CTRL_NAME, signatures);
                inkSignature.Location    = new Point(signatureLbl.Location.X + signatureLabelSize.Width + 20, firstControlStep + 54 + (signatureSize.Height + 20) * (signatures - 1));
                inkSignature.Size        = signatureSize;
                inkSignature.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;

                this.pnlSignatures.Controls.Add(signatureLbl);
                this.pnlSignatures.Controls.Add(inkSignature);
            }
            this.pnlSignatures.ResumeLayout(false);
            this.pnlSignatures.PerformLayout();

            numSignatures.Value    = signatures;
            pnlSignatures.Visible  = (signatures > 0);
            btnDeleteImage.Visible = (signatures > 0);

            if (signatures == 0)
            {
                pnlButtons.Location = new Point(pnlButtons.Location.X, pnlSignatures.Location.Y);
            }
        }
        /// <summary>
        /// Deletes the current sketch and restores this panel to its original state.
        /// Useful for restarting this panel in order to start over and create a new
        /// sketch.
        /// </summary>
        public virtual void InitPanel()
        {
            // Set double buffering of Panel
            this.SetStyle(ControlStyles.UserPaint |
                          ControlStyles.AllPaintingInWmPaint |
                          ControlStyles.OptimizedDoubleBuffer, true);

            // Set up InkPicture
            inkPic = new InkPicture();
            this.Controls.Clear();
            this.Controls.Add(this.inkPic);
            setDefaultInkPicProps();

            // Init InkSketch
            inkSketch = new InkPictureSketch(inkPic);

            // Hook into ink events
            attachToInkPicure();

            // Zero the focus parameter
            lastFocus = 0L;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AutoClaims));
     this.lblVehicleDamage = new System.Windows.Forms.Label();
     this.lblVehicleDescription = new System.Windows.Forms.Label();
     this.lblModel = new System.Windows.Forms.Label();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMake = new System.Windows.Forms.Label();
     this.lblPolicyNumber = new System.Windows.Forms.Label();
     this.lblInsuredName = new System.Windows.Forms.Label();
     this.chHideLayer = new System.Windows.Forms.CheckBox();
     this.pictHorzontalBar2 = new System.Windows.Forms.PictureBox();
     this.pictVehicleBox = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar3 = new System.Windows.Forms.PictureBox();
     this.pictPolicyBox = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar1 = new System.Windows.Forms.PictureBox();
     this.lblInstructions = new System.Windows.Forms.Label();
     this.lblTitle = new System.Windows.Forms.Label();
     this.pictCheckmarks = new System.Windows.Forms.PictureBox();
     this.inkPictVehicle = new Microsoft.Ink.InkPicture();
     this.lstAnnotationLayer = new System.Windows.Forms.ListBox();
     this.inkEdPolicyNumber = new Microsoft.Ink.InkEdit();
     this.inkEdName = new Microsoft.Ink.InkEdit();
     this.inkEdYear = new Microsoft.Ink.InkEdit();
     this.inkEdMake = new Microsoft.Ink.InkEdit();
     this.inkEdModel = new Microsoft.Ink.InkEdit();
     this.SuspendLayout();
     //
     // lblVehicleDamage
     //
     this.lblVehicleDamage.AutoSize = true;
     this.lblVehicleDamage.BackColor = System.Drawing.Color.White;
     this.lblVehicleDamage.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblVehicleDamage.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDamage.Location = new System.Drawing.Point(8, 408);
     this.lblVehicleDamage.Name = "lblVehicleDamage";
     this.lblVehicleDamage.Size = new System.Drawing.Size(256, 20);
     this.lblVehicleDamage.TabIndex = 58;
     this.lblVehicleDamage.Text = "Description of vehicle damage";
     this.lblVehicleDamage.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblVehicleDescription
     //
     this.lblVehicleDescription.AutoSize = true;
     this.lblVehicleDescription.BackColor = System.Drawing.Color.White;
     this.lblVehicleDescription.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblVehicleDescription.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDescription.Location = new System.Drawing.Point(8, 240);
     this.lblVehicleDescription.Name = "lblVehicleDescription";
     this.lblVehicleDescription.Size = new System.Drawing.Size(386, 20);
     this.lblVehicleDescription.TabIndex = 56;
     this.lblVehicleDescription.Text = "Enter the involved vehicle listed on the policy ";
     this.lblVehicleDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblModel
     //
     this.lblModel.AutoSize = true;
     this.lblModel.BackColor = System.Drawing.Color.Gainsboro;
     this.lblModel.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblModel.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblModel.Location = new System.Drawing.Point(112, 360);
     this.lblModel.Name = "lblModel";
     this.lblModel.Size = new System.Drawing.Size(73, 23);
     this.lblModel.TabIndex = 52;
     this.lblModel.Text = "Model:";
     this.lblModel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblYear
     //
     this.lblYear.AutoSize = true;
     this.lblYear.BackColor = System.Drawing.Color.Gainsboro;
     this.lblYear.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblYear.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblYear.Location = new System.Drawing.Point(48, 280);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(135, 23);
     this.lblYear.TabIndex = 51;
     this.lblYear.Text = "Year (YYYY):";
     this.lblYear.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblMake
     //
     this.lblMake.AutoSize = true;
     this.lblMake.BackColor = System.Drawing.Color.Gainsboro;
     this.lblMake.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblMake.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblMake.Location = new System.Drawing.Point(112, 320);
     this.lblMake.Name = "lblMake";
     this.lblMake.Size = new System.Drawing.Size(67, 23);
     this.lblMake.TabIndex = 50;
     this.lblMake.Text = "Make:";
     this.lblMake.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPolicyNumber
     //
     this.lblPolicyNumber.AutoSize = true;
     this.lblPolicyNumber.BackColor = System.Drawing.Color.Gainsboro;
     this.lblPolicyNumber.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPolicyNumber.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblPolicyNumber.Location = new System.Drawing.Point(32, 136);
     this.lblPolicyNumber.Name = "lblPolicyNumber";
     this.lblPolicyNumber.Size = new System.Drawing.Size(157, 23);
     this.lblPolicyNumber.TabIndex = 47;
     this.lblPolicyNumber.Text = "Policy Number:";
     this.lblPolicyNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblInsuredName
     //
     this.lblInsuredName.AutoSize = true;
     this.lblInsuredName.BackColor = System.Drawing.Color.Gainsboro;
     this.lblInsuredName.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblInsuredName.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblInsuredName.Location = new System.Drawing.Point(32, 176);
     this.lblInsuredName.Name = "lblInsuredName";
     this.lblInsuredName.Size = new System.Drawing.Size(154, 23);
     this.lblInsuredName.TabIndex = 46;
     this.lblInsuredName.Text = "Insured Name:";
     this.lblInsuredName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chHideLayer
     //
     this.chHideLayer.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.chHideLayer.Location = new System.Drawing.Point(416, 576);
     this.chHideLayer.Name = "chHideLayer";
     this.chHideLayer.Size = new System.Drawing.Size(144, 24);
     this.chHideLayer.TabIndex = 61;
     this.chHideLayer.Text = "Hide Layer";
     this.chHideLayer.CheckedChanged += new System.EventHandler(this.chHideLayer_CheckedChanged);
     //
     // pictHorzontalBar2
     //
     this.pictHorzontalBar2.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar2.Location = new System.Drawing.Point(8, 224);
     this.pictHorzontalBar2.Name = "pictHorzontalBar2";
     this.pictHorzontalBar2.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar2.TabIndex = 57;
     this.pictHorzontalBar2.TabStop = false;
     //
     // pictVehicleBox
     //
     this.pictVehicleBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictVehicleBox.Location = new System.Drawing.Point(8, 272);
     this.pictVehicleBox.Name = "pictVehicleBox";
     this.pictVehicleBox.Size = new System.Drawing.Size(184, 120);
     this.pictVehicleBox.TabIndex = 49;
     this.pictVehicleBox.TabStop = false;
     //
     // pictHorzontalBar3
     //
     this.pictHorzontalBar3.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar3.Location = new System.Drawing.Point(8, 400);
     this.pictHorzontalBar3.Name = "pictHorzontalBar3";
     this.pictHorzontalBar3.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar3.TabIndex = 48;
     this.pictHorzontalBar3.TabStop = false;
     //
     // pictPolicyBox
     //
     this.pictPolicyBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictPolicyBox.Location = new System.Drawing.Point(8, 128);
     this.pictPolicyBox.Name = "pictPolicyBox";
     this.pictPolicyBox.Size = new System.Drawing.Size(184, 80);
     this.pictPolicyBox.TabIndex = 44;
     this.pictPolicyBox.TabStop = false;
     //
     // pictHorzontalBar1
     //
     this.pictHorzontalBar1.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar1.Location = new System.Drawing.Point(8, 112);
     this.pictHorzontalBar1.Name = "pictHorzontalBar1";
     this.pictHorzontalBar1.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar1.TabIndex = 43;
     this.pictHorzontalBar1.TabStop = false;
     //
     // lblInstructions
     //
     this.lblInstructions.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblInstructions.Location = new System.Drawing.Point(96, 48);
     this.lblInstructions.Name = "lblInstructions";
     this.lblInstructions.Size = new System.Drawing.Size(456, 56);
     this.lblInstructions.TabIndex = 42;
     this.lblInstructions.Text = "Enter the required information for the policy applicable to the auto claim you ar" +
         "e submitting. Enter the vehicle exactly as it appears on the policy or insurance" +
         " card.";
     //
     // lblTitle
     //
     this.lblTitle.Font = new System.Drawing.Font("Tahoma", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(8, 8);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(288, 32);
     this.lblTitle.TabIndex = 41;
     this.lblTitle.Text = "Auto Claim";
     //
     // pictCheckmarks
     //
     this.pictCheckmarks.BackColor = System.Drawing.Color.White;
     this.pictCheckmarks.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("pictCheckmarks.BackgroundImage")));
     this.pictCheckmarks.Location = new System.Drawing.Point(32, 40);
     this.pictCheckmarks.Name = "pictCheckmarks";
     this.pictCheckmarks.Size = new System.Drawing.Size(40, 72);
     this.pictCheckmarks.TabIndex = 66;
     this.pictCheckmarks.TabStop = false;
     //
     // inkPictVehicle
     //
     this.inkPictVehicle.AutoRedraw = false;
     this.inkPictVehicle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.inkPictVehicle.Image = ((System.Drawing.Bitmap)(resources.GetObject("inkPictVehicle.Image")));
     this.inkPictVehicle.Location = new System.Drawing.Point(32, 440);
     this.inkPictVehicle.MarginX = -1;
     this.inkPictVehicle.MarginY = -1;
     this.inkPictVehicle.Name = "inkPictVehicle";
     this.inkPictVehicle.Size = new System.Drawing.Size(352, 232);
     this.inkPictVehicle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.inkPictVehicle.TabIndex = 67;
     this.inkPictVehicle.Paint += new System.Windows.Forms.PaintEventHandler(this.inkPictVehicle_Paint);
     //
     // lstAnnotationLayer
     //
     this.lstAnnotationLayer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lstAnnotationLayer.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lstAnnotationLayer.ItemHeight = 19;
     this.lstAnnotationLayer.Items.AddRange(new object[] {
                                                             "Body",
                                                             "Windows",
                                                             "Tires",
                                                             "Headlights"});
     this.lstAnnotationLayer.Location = new System.Drawing.Point(416, 432);
     this.lstAnnotationLayer.Name = "lstAnnotationLayer";
     this.lstAnnotationLayer.Size = new System.Drawing.Size(104, 135);
     this.lstAnnotationLayer.TabIndex = 68;
     this.lstAnnotationLayer.SelectedIndexChanged += new System.EventHandler(this.lstAnnotationLayer_SelectedIndexChanged);
     //
     // inkEdPolicyNumber
     //
     this.inkEdPolicyNumber.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdPolicyNumber.Location = new System.Drawing.Point(208, 136);
     this.inkEdPolicyNumber.Name = "inkEdPolicyNumber";
     this.inkEdPolicyNumber.Size = new System.Drawing.Size(312, 32);
     this.inkEdPolicyNumber.TabIndex = 69;
     this.inkEdPolicyNumber.Text = "";
     this.inkEdPolicyNumber.UseMouseForInput = true;
     //
     // inkEdName
     //
     this.inkEdName.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdName.Location = new System.Drawing.Point(208, 176);
     this.inkEdName.Name = "inkEdName";
     this.inkEdName.Size = new System.Drawing.Size(312, 32);
     this.inkEdName.TabIndex = 70;
     this.inkEdName.Text = "";
     this.inkEdName.UseMouseForInput = true;
     //
     // inkEdYear
     //
     this.inkEdYear.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdYear.Location = new System.Drawing.Point(208, 280);
     this.inkEdYear.Name = "inkEdYear";
     this.inkEdYear.Size = new System.Drawing.Size(312, 32);
     this.inkEdYear.TabIndex = 71;
     this.inkEdYear.Text = "";
     this.inkEdYear.UseMouseForInput = true;
     //
     // inkEdMake
     //
     this.inkEdMake.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdMake.Location = new System.Drawing.Point(208, 320);
     this.inkEdMake.Name = "inkEdMake";
     this.inkEdMake.Size = new System.Drawing.Size(312, 32);
     this.inkEdMake.TabIndex = 72;
     this.inkEdMake.Text = "";
     this.inkEdMake.UseMouseForInput = true;
     //
     // inkEdModel
     //
     this.inkEdModel.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdModel.Location = new System.Drawing.Point(208, 360);
     this.inkEdModel.Name = "inkEdModel";
     this.inkEdModel.Size = new System.Drawing.Size(312, 32);
     this.inkEdModel.TabIndex = 73;
     this.inkEdModel.Text = "";
     this.inkEdModel.UseMouseForInput = true;
     //
     // AutoClaims
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(560, 694);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.inkEdModel,
                                                                   this.inkEdMake,
                                                                   this.inkEdYear,
                                                                   this.inkEdName,
                                                                   this.inkEdPolicyNumber,
                                                                   this.lstAnnotationLayer,
                                                                   this.inkPictVehicle,
                                                                   this.lblVehicleDamage,
                                                                   this.lblVehicleDescription,
                                                                   this.lblModel,
                                                                   this.lblYear,
                                                                   this.lblMake,
                                                                   this.lblPolicyNumber,
                                                                   this.lblInsuredName,
                                                                   this.chHideLayer,
                                                                   this.pictHorzontalBar2,
                                                                   this.pictVehicleBox,
                                                                   this.pictHorzontalBar3,
                                                                   this.pictPolicyBox,
                                                                   this.pictHorzontalBar1,
                                                                   this.lblInstructions,
                                                                   this.lblTitle,
                                                                   this.pictCheckmarks});
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "AutoClaims";
     this.Text = "AutoClaims";
     this.Load += new System.EventHandler(this.AutoClaims_Load);
     this.ResumeLayout(false);
 }
示例#6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AutoClaims));
     this.lblVehicleDamage      = new System.Windows.Forms.Label();
     this.lblVehicleDescription = new System.Windows.Forms.Label();
     this.lblModel           = new System.Windows.Forms.Label();
     this.lblYear            = new System.Windows.Forms.Label();
     this.lblMake            = new System.Windows.Forms.Label();
     this.lblPolicyNumber    = new System.Windows.Forms.Label();
     this.lblInsuredName     = new System.Windows.Forms.Label();
     this.chHideLayer        = new System.Windows.Forms.CheckBox();
     this.pictHorzontalBar2  = new System.Windows.Forms.PictureBox();
     this.pictVehicleBox     = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar3  = new System.Windows.Forms.PictureBox();
     this.pictPolicyBox      = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar1  = new System.Windows.Forms.PictureBox();
     this.lblInstructions    = new System.Windows.Forms.Label();
     this.lblTitle           = new System.Windows.Forms.Label();
     this.pictCheckmarks     = new System.Windows.Forms.PictureBox();
     this.inkPictVehicle     = new Microsoft.Ink.InkPicture();
     this.lstAnnotationLayer = new System.Windows.Forms.ListBox();
     this.inkEdPolicyNumber  = new Microsoft.Ink.InkEdit();
     this.inkEdName          = new Microsoft.Ink.InkEdit();
     this.inkEdYear          = new Microsoft.Ink.InkEdit();
     this.inkEdMake          = new Microsoft.Ink.InkEdit();
     this.inkEdModel         = new Microsoft.Ink.InkEdit();
     this.SuspendLayout();
     //
     // lblVehicleDamage
     //
     this.lblVehicleDamage.AutoSize   = true;
     this.lblVehicleDamage.BackColor  = System.Drawing.Color.White;
     this.lblVehicleDamage.Font       = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblVehicleDamage.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDamage.Location   = new System.Drawing.Point(8, 408);
     this.lblVehicleDamage.Name       = "lblVehicleDamage";
     this.lblVehicleDamage.Size       = new System.Drawing.Size(256, 20);
     this.lblVehicleDamage.TabIndex   = 58;
     this.lblVehicleDamage.Text       = "Description of vehicle damage";
     this.lblVehicleDamage.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblVehicleDescription
     //
     this.lblVehicleDescription.AutoSize   = true;
     this.lblVehicleDescription.BackColor  = System.Drawing.Color.White;
     this.lblVehicleDescription.Font       = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblVehicleDescription.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDescription.Location   = new System.Drawing.Point(8, 240);
     this.lblVehicleDescription.Name       = "lblVehicleDescription";
     this.lblVehicleDescription.Size       = new System.Drawing.Size(386, 20);
     this.lblVehicleDescription.TabIndex   = 56;
     this.lblVehicleDescription.Text       = "Enter the involved vehicle listed on the policy ";
     this.lblVehicleDescription.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblModel
     //
     this.lblModel.AutoSize   = true;
     this.lblModel.BackColor  = System.Drawing.Color.Gainsboro;
     this.lblModel.Font       = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblModel.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblModel.Location   = new System.Drawing.Point(112, 360);
     this.lblModel.Name       = "lblModel";
     this.lblModel.Size       = new System.Drawing.Size(73, 23);
     this.lblModel.TabIndex   = 52;
     this.lblModel.Text       = "Model:";
     this.lblModel.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblYear
     //
     this.lblYear.AutoSize   = true;
     this.lblYear.BackColor  = System.Drawing.Color.Gainsboro;
     this.lblYear.Font       = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblYear.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblYear.Location   = new System.Drawing.Point(48, 280);
     this.lblYear.Name       = "lblYear";
     this.lblYear.Size       = new System.Drawing.Size(135, 23);
     this.lblYear.TabIndex   = 51;
     this.lblYear.Text       = "Year (YYYY):";
     this.lblYear.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblMake
     //
     this.lblMake.AutoSize   = true;
     this.lblMake.BackColor  = System.Drawing.Color.Gainsboro;
     this.lblMake.Font       = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblMake.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblMake.Location   = new System.Drawing.Point(112, 320);
     this.lblMake.Name       = "lblMake";
     this.lblMake.Size       = new System.Drawing.Size(67, 23);
     this.lblMake.TabIndex   = 50;
     this.lblMake.Text       = "Make:";
     this.lblMake.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPolicyNumber
     //
     this.lblPolicyNumber.AutoSize   = true;
     this.lblPolicyNumber.BackColor  = System.Drawing.Color.Gainsboro;
     this.lblPolicyNumber.Font       = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPolicyNumber.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblPolicyNumber.Location   = new System.Drawing.Point(32, 136);
     this.lblPolicyNumber.Name       = "lblPolicyNumber";
     this.lblPolicyNumber.Size       = new System.Drawing.Size(157, 23);
     this.lblPolicyNumber.TabIndex   = 47;
     this.lblPolicyNumber.Text       = "Policy Number:";
     this.lblPolicyNumber.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblInsuredName
     //
     this.lblInsuredName.AutoSize   = true;
     this.lblInsuredName.BackColor  = System.Drawing.Color.Gainsboro;
     this.lblInsuredName.Font       = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblInsuredName.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblInsuredName.Location   = new System.Drawing.Point(32, 176);
     this.lblInsuredName.Name       = "lblInsuredName";
     this.lblInsuredName.Size       = new System.Drawing.Size(154, 23);
     this.lblInsuredName.TabIndex   = 46;
     this.lblInsuredName.Text       = "Insured Name:";
     this.lblInsuredName.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chHideLayer
     //
     this.chHideLayer.Font            = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.chHideLayer.Location        = new System.Drawing.Point(416, 576);
     this.chHideLayer.Name            = "chHideLayer";
     this.chHideLayer.Size            = new System.Drawing.Size(144, 24);
     this.chHideLayer.TabIndex        = 61;
     this.chHideLayer.Text            = "Hide Layer";
     this.chHideLayer.CheckedChanged += new System.EventHandler(this.chHideLayer_CheckedChanged);
     //
     // pictHorzontalBar2
     //
     this.pictHorzontalBar2.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar2.Location  = new System.Drawing.Point(8, 224);
     this.pictHorzontalBar2.Name      = "pictHorzontalBar2";
     this.pictHorzontalBar2.Size      = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar2.TabIndex  = 57;
     this.pictHorzontalBar2.TabStop   = false;
     //
     // pictVehicleBox
     //
     this.pictVehicleBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictVehicleBox.Location  = new System.Drawing.Point(8, 272);
     this.pictVehicleBox.Name      = "pictVehicleBox";
     this.pictVehicleBox.Size      = new System.Drawing.Size(184, 120);
     this.pictVehicleBox.TabIndex  = 49;
     this.pictVehicleBox.TabStop   = false;
     //
     // pictHorzontalBar3
     //
     this.pictHorzontalBar3.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar3.Location  = new System.Drawing.Point(8, 400);
     this.pictHorzontalBar3.Name      = "pictHorzontalBar3";
     this.pictHorzontalBar3.Size      = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar3.TabIndex  = 48;
     this.pictHorzontalBar3.TabStop   = false;
     //
     // pictPolicyBox
     //
     this.pictPolicyBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictPolicyBox.Location  = new System.Drawing.Point(8, 128);
     this.pictPolicyBox.Name      = "pictPolicyBox";
     this.pictPolicyBox.Size      = new System.Drawing.Size(184, 80);
     this.pictPolicyBox.TabIndex  = 44;
     this.pictPolicyBox.TabStop   = false;
     //
     // pictHorzontalBar1
     //
     this.pictHorzontalBar1.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar1.Location  = new System.Drawing.Point(8, 112);
     this.pictHorzontalBar1.Name      = "pictHorzontalBar1";
     this.pictHorzontalBar1.Size      = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar1.TabIndex  = 43;
     this.pictHorzontalBar1.TabStop   = false;
     //
     // lblInstructions
     //
     this.lblInstructions.Font     = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblInstructions.Location = new System.Drawing.Point(96, 48);
     this.lblInstructions.Name     = "lblInstructions";
     this.lblInstructions.Size     = new System.Drawing.Size(456, 56);
     this.lblInstructions.TabIndex = 42;
     this.lblInstructions.Text     = "Enter the required information for the policy applicable to the auto claim you ar" +
                                     "e submitting. Enter the vehicle exactly as it appears on the policy or insurance" +
                                     " card.";
     //
     // lblTitle
     //
     this.lblTitle.Font     = new System.Drawing.Font("Tahoma", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(8, 8);
     this.lblTitle.Name     = "lblTitle";
     this.lblTitle.Size     = new System.Drawing.Size(288, 32);
     this.lblTitle.TabIndex = 41;
     this.lblTitle.Text     = "Auto Claim";
     //
     // pictCheckmarks
     //
     this.pictCheckmarks.BackColor       = System.Drawing.Color.White;
     this.pictCheckmarks.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("pictCheckmarks.BackgroundImage")));
     this.pictCheckmarks.Location        = new System.Drawing.Point(32, 40);
     this.pictCheckmarks.Name            = "pictCheckmarks";
     this.pictCheckmarks.Size            = new System.Drawing.Size(40, 72);
     this.pictCheckmarks.TabIndex        = 66;
     this.pictCheckmarks.TabStop         = false;
     //
     // inkPictVehicle
     //
     this.inkPictVehicle.AutoRedraw  = false;
     this.inkPictVehicle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.inkPictVehicle.Image       = ((System.Drawing.Bitmap)(resources.GetObject("inkPictVehicle.Image")));
     this.inkPictVehicle.Location    = new System.Drawing.Point(32, 440);
     this.inkPictVehicle.MarginX     = -1;
     this.inkPictVehicle.MarginY     = -1;
     this.inkPictVehicle.Name        = "inkPictVehicle";
     this.inkPictVehicle.Size        = new System.Drawing.Size(352, 232);
     this.inkPictVehicle.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.inkPictVehicle.TabIndex    = 67;
     this.inkPictVehicle.Paint      += new System.Windows.Forms.PaintEventHandler(this.inkPictVehicle_Paint);
     //
     // lstAnnotationLayer
     //
     this.lstAnnotationLayer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lstAnnotationLayer.Font        = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lstAnnotationLayer.ItemHeight  = 19;
     this.lstAnnotationLayer.Items.AddRange(new object[] {
         "Body",
         "Windows",
         "Tires",
         "Headlights"
     });
     this.lstAnnotationLayer.Location              = new System.Drawing.Point(416, 432);
     this.lstAnnotationLayer.Name                  = "lstAnnotationLayer";
     this.lstAnnotationLayer.Size                  = new System.Drawing.Size(104, 135);
     this.lstAnnotationLayer.TabIndex              = 68;
     this.lstAnnotationLayer.SelectedIndexChanged += new System.EventHandler(this.lstAnnotationLayer_SelectedIndexChanged);
     //
     // inkEdPolicyNumber
     //
     this.inkEdPolicyNumber.Cursor           = System.Windows.Forms.Cursors.Default;
     this.inkEdPolicyNumber.Location         = new System.Drawing.Point(208, 136);
     this.inkEdPolicyNumber.Name             = "inkEdPolicyNumber";
     this.inkEdPolicyNumber.Size             = new System.Drawing.Size(312, 32);
     this.inkEdPolicyNumber.TabIndex         = 69;
     this.inkEdPolicyNumber.Text             = "";
     this.inkEdPolicyNumber.UseMouseForInput = true;
     //
     // inkEdName
     //
     this.inkEdName.Cursor           = System.Windows.Forms.Cursors.Default;
     this.inkEdName.Location         = new System.Drawing.Point(208, 176);
     this.inkEdName.Name             = "inkEdName";
     this.inkEdName.Size             = new System.Drawing.Size(312, 32);
     this.inkEdName.TabIndex         = 70;
     this.inkEdName.Text             = "";
     this.inkEdName.UseMouseForInput = true;
     //
     // inkEdYear
     //
     this.inkEdYear.Cursor           = System.Windows.Forms.Cursors.Default;
     this.inkEdYear.Location         = new System.Drawing.Point(208, 280);
     this.inkEdYear.Name             = "inkEdYear";
     this.inkEdYear.Size             = new System.Drawing.Size(312, 32);
     this.inkEdYear.TabIndex         = 71;
     this.inkEdYear.Text             = "";
     this.inkEdYear.UseMouseForInput = true;
     //
     // inkEdMake
     //
     this.inkEdMake.Cursor           = System.Windows.Forms.Cursors.Default;
     this.inkEdMake.Location         = new System.Drawing.Point(208, 320);
     this.inkEdMake.Name             = "inkEdMake";
     this.inkEdMake.Size             = new System.Drawing.Size(312, 32);
     this.inkEdMake.TabIndex         = 72;
     this.inkEdMake.Text             = "";
     this.inkEdMake.UseMouseForInput = true;
     //
     // inkEdModel
     //
     this.inkEdModel.Cursor           = System.Windows.Forms.Cursors.Default;
     this.inkEdModel.Location         = new System.Drawing.Point(208, 360);
     this.inkEdModel.Name             = "inkEdModel";
     this.inkEdModel.Size             = new System.Drawing.Size(312, 32);
     this.inkEdModel.TabIndex         = 73;
     this.inkEdModel.Text             = "";
     this.inkEdModel.UseMouseForInput = true;
     //
     // AutoClaims
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(560, 694);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.inkEdModel,
         this.inkEdMake,
         this.inkEdYear,
         this.inkEdName,
         this.inkEdPolicyNumber,
         this.lstAnnotationLayer,
         this.inkPictVehicle,
         this.lblVehicleDamage,
         this.lblVehicleDescription,
         this.lblModel,
         this.lblYear,
         this.lblMake,
         this.lblPolicyNumber,
         this.lblInsuredName,
         this.chHideLayer,
         this.pictHorzontalBar2,
         this.pictVehicleBox,
         this.pictHorzontalBar3,
         this.pictPolicyBox,
         this.pictHorzontalBar1,
         this.lblInstructions,
         this.lblTitle,
         this.pictCheckmarks
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "AutoClaims";
     this.Text            = "AutoClaims";
     this.Load           += new System.EventHandler(this.AutoClaims_Load);
     this.ResumeLayout(false);
 }
 /// <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(AutoClaims));
     this.lblVehicleDamage = new System.Windows.Forms.Label();
     this.lblVehicleDescription = new System.Windows.Forms.Label();
     this.lblModel = new System.Windows.Forms.Label();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMake = new System.Windows.Forms.Label();
     this.lblPolicyNumber = new System.Windows.Forms.Label();
     this.lblInsuredName = new System.Windows.Forms.Label();
     this.chHideLayer = new System.Windows.Forms.CheckBox();
     this.pictHorzontalBar2 = new System.Windows.Forms.PictureBox();
     this.pictVehicleBox = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar3 = new System.Windows.Forms.PictureBox();
     this.pictPolicyBox = new System.Windows.Forms.PictureBox();
     this.pictHorzontalBar1 = new System.Windows.Forms.PictureBox();
     this.lblInstructions = new System.Windows.Forms.Label();
     this.lblTitle = new System.Windows.Forms.Label();
     this.pictCheckmarks = new System.Windows.Forms.PictureBox();
     this.inkPictVehicle = new Microsoft.Ink.InkPicture();
     this.lstAnnotationLayer = new System.Windows.Forms.ListBox();
     this.inkEdPolicyNumber = new Microsoft.Ink.InkEdit();
     this.inkEdName = new Microsoft.Ink.InkEdit();
     this.inkEdYear = new Microsoft.Ink.InkEdit();
     this.inkEdMake = new Microsoft.Ink.InkEdit();
     this.inkEdModel = new Microsoft.Ink.InkEdit();
     this.ShowEvent = new System.Windows.Forms.Button();
     this.panelForSignature = new System.Windows.Forms.Panel();
     this.inkEdSignature = new Microsoft.Ink.InkEdit();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictVehicleBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictPolicyBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictCheckmarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.inkPictVehicle)).BeginInit();
     this.SuspendLayout();
     //
     // lblVehicleDamage
     //
     this.lblVehicleDamage.AutoSize = true;
     this.lblVehicleDamage.BackColor = System.Drawing.Color.White;
     this.lblVehicleDamage.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblVehicleDamage.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDamage.Location = new System.Drawing.Point(8, 408);
     this.lblVehicleDamage.Name = "lblVehicleDamage";
     this.lblVehicleDamage.Size = new System.Drawing.Size(256, 25);
     this.lblVehicleDamage.TabIndex = 58;
     this.lblVehicleDamage.Text = "Description of vehicle damage";
     this.lblVehicleDamage.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDamage.UseCompatibleTextRendering = true;
     //
     // lblVehicleDescription
     //
     this.lblVehicleDescription.AutoSize = true;
     this.lblVehicleDescription.BackColor = System.Drawing.Color.White;
     this.lblVehicleDescription.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblVehicleDescription.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDescription.Location = new System.Drawing.Point(8, 240);
     this.lblVehicleDescription.Name = "lblVehicleDescription";
     this.lblVehicleDescription.Size = new System.Drawing.Size(386, 25);
     this.lblVehicleDescription.TabIndex = 56;
     this.lblVehicleDescription.Text = "Enter the involved vehicle listed on the policy ";
     this.lblVehicleDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblVehicleDescription.UseCompatibleTextRendering = true;
     //
     // lblModel
     //
     this.lblModel.AutoSize = true;
     this.lblModel.BackColor = System.Drawing.Color.Gainsboro;
     this.lblModel.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblModel.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblModel.Location = new System.Drawing.Point(12, 352);
     this.lblModel.Name = "lblModel";
     this.lblModel.Size = new System.Drawing.Size(73, 29);
     this.lblModel.TabIndex = 52;
     this.lblModel.Text = "Model:";
     this.lblModel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblModel.UseCompatibleTextRendering = true;
     //
     // lblYear
     //
     this.lblYear.AutoSize = true;
     this.lblYear.BackColor = System.Drawing.Color.Gainsboro;
     this.lblYear.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblYear.Location = new System.Drawing.Point(12, 275);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(135, 29);
     this.lblYear.TabIndex = 51;
     this.lblYear.Text = "Year (YYYY):";
     this.lblYear.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblYear.UseCompatibleTextRendering = true;
     //
     // lblMake
     //
     this.lblMake.AutoSize = true;
     this.lblMake.BackColor = System.Drawing.Color.Gainsboro;
     this.lblMake.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMake.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblMake.Location = new System.Drawing.Point(12, 312);
     this.lblMake.Name = "lblMake";
     this.lblMake.Size = new System.Drawing.Size(67, 29);
     this.lblMake.TabIndex = 50;
     this.lblMake.Text = "Make:";
     this.lblMake.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblMake.UseCompatibleTextRendering = true;
     //
     // lblPolicyNumber
     //
     this.lblPolicyNumber.AutoSize = true;
     this.lblPolicyNumber.BackColor = System.Drawing.Color.Gainsboro;
     this.lblPolicyNumber.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPolicyNumber.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblPolicyNumber.Location = new System.Drawing.Point(11, 136);
     this.lblPolicyNumber.Name = "lblPolicyNumber";
     this.lblPolicyNumber.Size = new System.Drawing.Size(157, 29);
     this.lblPolicyNumber.TabIndex = 47;
     this.lblPolicyNumber.Text = "Policy Number:";
     this.lblPolicyNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblPolicyNumber.UseCompatibleTextRendering = true;
     //
     // lblInsuredName
     //
     this.lblInsuredName.AutoSize = true;
     this.lblInsuredName.BackColor = System.Drawing.Color.Gainsboro;
     this.lblInsuredName.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblInsuredName.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblInsuredName.Location = new System.Drawing.Point(11, 168);
     this.lblInsuredName.Name = "lblInsuredName";
     this.lblInsuredName.Size = new System.Drawing.Size(154, 29);
     this.lblInsuredName.TabIndex = 46;
     this.lblInsuredName.Text = "Insured Name:";
     this.lblInsuredName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblInsuredName.UseCompatibleTextRendering = true;
     //
     // chHideLayer
     //
     this.chHideLayer.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
     this.chHideLayer.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chHideLayer.Location = new System.Drawing.Point(472, 432);
     this.chHideLayer.Name = "chHideLayer";
     this.chHideLayer.Size = new System.Drawing.Size(94, 65);
     this.chHideLayer.TabIndex = 61;
     this.chHideLayer.Text = "Hide Selected Layer";
     this.chHideLayer.UseCompatibleTextRendering = true;
     this.chHideLayer.CheckedChanged += new System.EventHandler(this.chHideLayer_CheckedChanged);
     //
     // pictHorzontalBar2
     //
     this.pictHorzontalBar2.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar2.Location = new System.Drawing.Point(8, 224);
     this.pictHorzontalBar2.Name = "pictHorzontalBar2";
     this.pictHorzontalBar2.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar2.TabIndex = 57;
     this.pictHorzontalBar2.TabStop = false;
     //
     // pictVehicleBox
     //
     this.pictVehicleBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictVehicleBox.Location = new System.Drawing.Point(8, 272);
     this.pictVehicleBox.Name = "pictVehicleBox";
     this.pictVehicleBox.Size = new System.Drawing.Size(194, 120);
     this.pictVehicleBox.TabIndex = 49;
     this.pictVehicleBox.TabStop = false;
     //
     // pictHorzontalBar3
     //
     this.pictHorzontalBar3.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar3.Location = new System.Drawing.Point(8, 400);
     this.pictHorzontalBar3.Name = "pictHorzontalBar3";
     this.pictHorzontalBar3.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar3.TabIndex = 48;
     this.pictHorzontalBar3.TabStop = false;
     //
     // pictPolicyBox
     //
     this.pictPolicyBox.BackColor = System.Drawing.Color.Gainsboro;
     this.pictPolicyBox.Location = new System.Drawing.Point(8, 128);
     this.pictPolicyBox.Name = "pictPolicyBox";
     this.pictPolicyBox.Size = new System.Drawing.Size(194, 80);
     this.pictPolicyBox.TabIndex = 44;
     this.pictPolicyBox.TabStop = false;
     //
     // pictHorzontalBar1
     //
     this.pictHorzontalBar1.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.pictHorzontalBar1.Location = new System.Drawing.Point(8, 113);
     this.pictHorzontalBar1.Name = "pictHorzontalBar1";
     this.pictHorzontalBar1.Size = new System.Drawing.Size(536, 2);
     this.pictHorzontalBar1.TabIndex = 43;
     this.pictHorzontalBar1.TabStop = false;
     //
     // lblInstructions
     //
     this.lblInstructions.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblInstructions.Location = new System.Drawing.Point(96, 44);
     this.lblInstructions.Name = "lblInstructions";
     this.lblInstructions.Size = new System.Drawing.Size(448, 65);
     this.lblInstructions.TabIndex = 42;
     this.lblInstructions.Text = "Enter the required information for the policy applicable to the auto claim you ar" +
         "e submitting. Enter the vehicle exactly as it appears on the policy or insurance" +
         " card.";
     this.lblInstructions.UseCompatibleTextRendering = true;
     //
     // lblTitle
     //
     this.lblTitle.AutoSize = true;
     this.lblTitle.Font = new System.Drawing.Font("Tahoma", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(8, 8);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(174, 42);
     this.lblTitle.TabIndex = 41;
     this.lblTitle.Text = "Auto Claim";
     this.lblTitle.UseCompatibleTextRendering = true;
     //
     // pictCheckmarks
     //
     this.pictCheckmarks.BackColor = System.Drawing.Color.White;
     this.pictCheckmarks.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictCheckmarks.BackgroundImage")));
     this.pictCheckmarks.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.pictCheckmarks.Location = new System.Drawing.Point(33, 44);
     this.pictCheckmarks.Name = "pictCheckmarks";
     this.pictCheckmarks.Size = new System.Drawing.Size(37, 62);
     this.pictCheckmarks.TabIndex = 66;
     this.pictCheckmarks.TabStop = false;
     //
     // inkPictVehicle
     //
     this.inkPictVehicle.AutoRedraw = false;
     this.inkPictVehicle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.inkPictVehicle.Image = ((System.Drawing.Image)(resources.GetObject("inkPictVehicle.Image")));
     this.inkPictVehicle.Location = new System.Drawing.Point(8, 432);
     this.inkPictVehicle.MarginX = -1;
     this.inkPictVehicle.MarginY = -1;
     this.inkPictVehicle.Name = "inkPictVehicle";
     this.inkPictVehicle.Size = new System.Drawing.Size(352, 218);
     this.inkPictVehicle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.inkPictVehicle.TabIndex = 67;
     this.inkPictVehicle.Paint += new System.Windows.Forms.PaintEventHandler(this.inkPictVehicle_Paint);
     //
     // lstAnnotationLayer
     //
     this.lstAnnotationLayer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lstAnnotationLayer.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lstAnnotationLayer.ItemHeight = 19;
     this.lstAnnotationLayer.Items.AddRange(new object[] {
     "Body",
     "Windows",
     "Tires",
     "Headlights"});
     this.lstAnnotationLayer.Location = new System.Drawing.Point(376, 432);
     this.lstAnnotationLayer.Name = "lstAnnotationLayer";
     this.lstAnnotationLayer.Size = new System.Drawing.Size(90, 97);
     this.lstAnnotationLayer.TabIndex = 68;
     this.lstAnnotationLayer.SelectedIndexChanged += new System.EventHandler(this.lstAnnotationLayer_SelectedIndexChanged);
     //
     // inkEdPolicyNumber
     //
     this.inkEdPolicyNumber.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdPolicyNumber.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdPolicyNumber.Location = new System.Drawing.Point(208, 136);
     this.inkEdPolicyNumber.Name = "inkEdPolicyNumber";
     this.inkEdPolicyNumber.Size = new System.Drawing.Size(312, 32);
     this.inkEdPolicyNumber.TabIndex = 69;
     this.inkEdPolicyNumber.Text = "";
     this.inkEdPolicyNumber.Enter += new System.EventHandler(this.inkEdPolicyNumber_Enter);
     //
     // inkEdName
     //
     this.inkEdName.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdName.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdName.Location = new System.Drawing.Point(208, 176);
     this.inkEdName.Name = "inkEdName";
     this.inkEdName.Size = new System.Drawing.Size(312, 32);
     this.inkEdName.TabIndex = 70;
     this.inkEdName.Text = "";
     //
     // inkEdYear
     //
     this.inkEdYear.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdYear.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdYear.Location = new System.Drawing.Point(208, 280);
     this.inkEdYear.Name = "inkEdYear";
     this.inkEdYear.Size = new System.Drawing.Size(312, 32);
     this.inkEdYear.TabIndex = 71;
     this.inkEdYear.Text = "";
     this.inkEdYear.Enter += new System.EventHandler(this.inkEdYear_Enter);
     //
     // inkEdMake
     //
     this.inkEdMake.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdMake.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdMake.Location = new System.Drawing.Point(208, 320);
     this.inkEdMake.Name = "inkEdMake";
     this.inkEdMake.Size = new System.Drawing.Size(312, 32);
     this.inkEdMake.TabIndex = 72;
     this.inkEdMake.Text = "";
     this.inkEdMake.Enter += new System.EventHandler(this.inkEdMake_Enter);
     //
     // inkEdModel
     //
     this.inkEdModel.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdModel.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdModel.Location = new System.Drawing.Point(208, 360);
     this.inkEdModel.Name = "inkEdModel";
     this.inkEdModel.Size = new System.Drawing.Size(312, 32);
     this.inkEdModel.TabIndex = 73;
     this.inkEdModel.Text = "";
     this.inkEdModel.Enter += new System.EventHandler(this.inkEdModel_Enter);
     //
     // ShowEvent
     //
     this.ShowEvent.Location = new System.Drawing.Point(397, 240);
     this.ShowEvent.Name = "ShowEvent";
     this.ShowEvent.Size = new System.Drawing.Size(123, 25);
     this.ShowEvent.TabIndex = 75;
     this.ShowEvent.Text = "Show TIP Events";
     this.ShowEvent.UseCompatibleTextRendering = true;
     this.ShowEvent.UseVisualStyleBackColor = true;
     this.ShowEvent.Click += new System.EventHandler(this.showEventButton_Click);
     //
     // panelForSignature
     //
     this.panelForSignature.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelForSignature.Enabled = false;
     this.panelForSignature.Location = new System.Drawing.Point(376, 608);
     this.panelForSignature.Name = "panelForSignature";
     this.panelForSignature.Size = new System.Drawing.Size(168, 42);
     this.panelForSignature.TabIndex = 76;
     this.panelForSignature.Paint += new System.Windows.Forms.PaintEventHandler(this.panelForSignature_Paint);
     //
     // inkEdSignature
     //
     this.inkEdSignature.Cursor = System.Windows.Forms.Cursors.Default;
     this.inkEdSignature.InkMode = Microsoft.Ink.InkMode.Disabled;
     this.inkEdSignature.Location = new System.Drawing.Point(376, 578);
     this.inkEdSignature.Name = "inkEdSignature";
     this.inkEdSignature.Size = new System.Drawing.Size(168, 26);
     this.inkEdSignature.TabIndex = 77;
     this.inkEdSignature.Text = "";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(373, 553);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 17);
     this.label1.TabIndex = 78;
     this.label1.Text = "Signature :";
     //
     // AutoClaims
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.AutoScroll = true;
     this.AutoSize = true;
     this.BackColor = System.Drawing.Color.White;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(602, 676);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.inkEdSignature);
     this.Controls.Add(this.panelForSignature);
     this.Controls.Add(this.ShowEvent);
     this.Controls.Add(this.inkEdModel);
     this.Controls.Add(this.inkEdMake);
     this.Controls.Add(this.inkEdYear);
     this.Controls.Add(this.inkEdName);
     this.Controls.Add(this.inkEdPolicyNumber);
     this.Controls.Add(this.lstAnnotationLayer);
     this.Controls.Add(this.inkPictVehicle);
     this.Controls.Add(this.lblVehicleDamage);
     this.Controls.Add(this.lblVehicleDescription);
     this.Controls.Add(this.lblModel);
     this.Controls.Add(this.lblYear);
     this.Controls.Add(this.lblMake);
     this.Controls.Add(this.lblPolicyNumber);
     this.Controls.Add(this.lblInsuredName);
     this.Controls.Add(this.chHideLayer);
     this.Controls.Add(this.pictHorzontalBar2);
     this.Controls.Add(this.pictVehicleBox);
     this.Controls.Add(this.pictHorzontalBar3);
     this.Controls.Add(this.pictPolicyBox);
     this.Controls.Add(this.pictHorzontalBar1);
     this.Controls.Add(this.lblInstructions);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.pictCheckmarks);
     this.Name = "AutoClaims";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "TIPAutoClaims";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.AutoClaims_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictVehicleBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictPolicyBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictHorzontalBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictCheckmarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.inkPictVehicle)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(SettingsDialog));
     this.m_customBtn              = new System.Windows.Forms.Button();
     this.m_fitToCurve             = new System.Windows.Forms.CheckBox();
     this.inkPicture               = new Microsoft.Ink.InkPicture();
     this.m_ballRadio              = new System.Windows.Forms.RadioButton();
     this.m_rectangleRadio         = new System.Windows.Forms.RadioButton();
     this.m_antialias              = new System.Windows.Forms.CheckBox();
     this.m_clearBtn               = new System.Windows.Forms.Button();
     this.groupBox3                = new System.Windows.Forms.GroupBox();
     this.groupBox4                = new System.Windows.Forms.GroupBox();
     this.groupBox5                = new System.Windows.Forms.GroupBox();
     this.m_transparencyBar        = new System.Windows.Forms.TrackBar();
     this.m_cancelBtn              = new System.Windows.Forms.Button();
     this.m_okBtn                  = new System.Windows.Forms.Button();
     this.pictureBox4              = new System.Windows.Forms.PictureBox();
     this.iconTip                  = new System.Windows.Forms.PictureBox();
     this.iconTransparency         = new System.Windows.Forms.PictureBox();
     this.label5                   = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.m_transpLabel            = new System.Windows.Forms.Label();
     this.m_smoothLabel            = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.m_pressureCheck          = new System.Windows.Forms.CheckBox();
     this.m_heightUpDown           = new System.Windows.Forms.NumericUpDown();
     this.label6                   = new System.Windows.Forms.Label();
     this.label7                   = new System.Windows.Forms.Label();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.pictureBox5              = new System.Windows.Forms.PictureBox();
     this.label8                   = new System.Windows.Forms.Label();
     this.m_widthUpDown            = new System.Windows.Forms.NumericUpDown();
     this.iconColor                = new System.Windows.Forms.PictureBox();
     this.m_colorBox               = new MSR.LST.Controls.InkToolBarControls.ColorComboBox();
     this.m_optimizeForHighlighter = new System.Windows.Forms.CheckBox();
     this.label2                   = new System.Windows.Forms.Label();
     this.label4                   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).BeginInit();
     this.SuspendLayout();
     //
     // m_customBtn
     //
     this.m_customBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_customBtn.Location  = new System.Drawing.Point(264, 11);
     this.m_customBtn.Name      = "m_customBtn";
     this.m_customBtn.TabIndex  = 1;
     this.m_customBtn.Text      = "Custom...";
     this.m_customBtn.Click    += new System.EventHandler(this.CustomBtn_Click);
     //
     // m_fitToCurve
     //
     this.m_fitToCurve.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_fitToCurve.Location        = new System.Drawing.Point(136, 284);
     this.m_fitToCurve.Name            = "m_fitToCurve";
     this.m_fitToCurve.Size            = new System.Drawing.Size(80, 24);
     this.m_fitToCurve.TabIndex        = 10;
     this.m_fitToCurve.Text            = "Fit to curve";
     this.m_fitToCurve.CheckedChanged += new System.EventHandler(this.FitToCurve_CheckedChanged);
     //
     // inkPicture
     //
     this.inkPicture.Anchor      = System.Windows.Forms.AnchorStyles.None;
     this.inkPicture.BackColor   = System.Drawing.SystemColors.Window;
     this.inkPicture.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.inkPicture.Location    = new System.Drawing.Point(8, 38);
     this.inkPicture.MarginX     = -2147483648;
     this.inkPicture.MarginY     = -2147483648;
     this.inkPicture.Name        = "inkPicture";
     this.inkPicture.Size        = new System.Drawing.Size(236, 252);
     this.inkPicture.TabIndex    = 7;
     this.inkPicture.Stroke     += new Microsoft.Ink.InkCollectorStrokeEventHandler(this.OnInkPicture_Stroke);
     //
     // m_ballRadio
     //
     this.m_ballRadio.Checked         = true;
     this.m_ballRadio.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_ballRadio.Location        = new System.Drawing.Point(136, 132);
     this.m_ballRadio.Name            = "m_ballRadio";
     this.m_ballRadio.Size            = new System.Drawing.Size(72, 24);
     this.m_ballRadio.TabIndex        = 4;
     this.m_ballRadio.TabStop         = true;
     this.m_ballRadio.Text            = "Ball";
     this.m_ballRadio.CheckedChanged += new System.EventHandler(this.RoundRadio_CheckedChanged);
     //
     // m_rectangleRadio
     //
     this.m_rectangleRadio.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_rectangleRadio.Location        = new System.Drawing.Point(136, 152);
     this.m_rectangleRadio.Name            = "m_rectangleRadio";
     this.m_rectangleRadio.Size            = new System.Drawing.Size(72, 24);
     this.m_rectangleRadio.TabIndex        = 5;
     this.m_rectangleRadio.TabStop         = true;
     this.m_rectangleRadio.Text            = "Rectangle";
     this.m_rectangleRadio.CheckedChanged += new System.EventHandler(this.RectangleRadio_CheckedChanged);
     //
     // m_antialias
     //
     this.m_antialias.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_antialias.Location        = new System.Drawing.Point(136, 262);
     this.m_antialias.Name            = "m_antialias";
     this.m_antialias.Size            = new System.Drawing.Size(80, 24);
     this.m_antialias.TabIndex        = 9;
     this.m_antialias.Text            = "Antialiased";
     this.m_antialias.CheckedChanged += new System.EventHandler(this.Antialias_CheckedChanged);
     //
     // m_clearBtn
     //
     this.m_clearBtn.BackColor = System.Drawing.SystemColors.ControlDark;
     this.m_clearBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_clearBtn.Location  = new System.Drawing.Point(169, 8);
     this.m_clearBtn.Name      = "m_clearBtn";
     this.m_clearBtn.TabIndex  = 0;
     this.m_clearBtn.Text      = "Clear";
     this.m_clearBtn.Click    += new System.EventHandler(this.ClearBtn_Click);
     //
     // groupBox3
     //
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox3.Location  = new System.Drawing.Point(7, 248);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(339, 8);
     this.groupBox3.TabIndex  = 51;
     this.groupBox3.TabStop   = false;
     //
     // groupBox4
     //
     this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox4.Location  = new System.Drawing.Point(7, 118);
     this.groupBox4.Name      = "groupBox4";
     this.groupBox4.Size      = new System.Drawing.Size(339, 8);
     this.groupBox4.TabIndex  = 52;
     this.groupBox4.TabStop   = false;
     //
     // groupBox5
     //
     this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox5.Location  = new System.Drawing.Point(7, 39);
     this.groupBox5.Name      = "groupBox5";
     this.groupBox5.Size      = new System.Drawing.Size(339, 8);
     this.groupBox5.TabIndex  = 53;
     this.groupBox5.TabStop   = false;
     //
     // m_transparencyBar
     //
     this.m_transparencyBar.BackColor     = System.Drawing.SystemColors.Control;
     this.m_transparencyBar.LargeChange   = 10;
     this.m_transparencyBar.Location      = new System.Drawing.Point(126, 75);
     this.m_transparencyBar.Maximum       = 100;
     this.m_transparencyBar.Name          = "m_transparencyBar";
     this.m_transparencyBar.Size          = new System.Drawing.Size(136, 45);
     this.m_transparencyBar.TabIndex      = 3;
     this.m_transparencyBar.TickStyle     = System.Windows.Forms.TickStyle.Both;
     this.m_transparencyBar.ValueChanged += new System.EventHandler(this.TransparencyBar_ValueChanged);
     //
     // m_cancelBtn
     //
     this.m_cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_cancelBtn.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.m_cancelBtn.Location     = new System.Drawing.Point(537, 312);
     this.m_cancelBtn.Name         = "m_cancelBtn";
     this.m_cancelBtn.Size         = new System.Drawing.Size(72, 23);
     this.m_cancelBtn.TabIndex     = 12;
     this.m_cancelBtn.Text         = "&Cancel";
     //
     // m_okBtn
     //
     this.m_okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.m_okBtn.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.m_okBtn.Location     = new System.Drawing.Point(454, 312);
     this.m_okBtn.Name         = "m_okBtn";
     this.m_okBtn.TabIndex     = 13;
     this.m_okBtn.Text         = "&OK";
     //
     // pictureBox4
     //
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image     = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location  = new System.Drawing.Point(16, 273);
     this.pictureBox4.Name      = "pictureBox4";
     this.pictureBox4.Size      = new System.Drawing.Size(24, 24);
     this.pictureBox4.TabIndex  = 47;
     this.pictureBox4.TabStop   = false;
     //
     // iconTip
     //
     this.iconTip.BackColor       = System.Drawing.Color.Transparent;
     this.iconTip.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("iconTip.BackgroundImage")));
     this.iconTip.Location        = new System.Drawing.Point(16, 140);
     this.iconTip.Name            = "iconTip";
     this.iconTip.Size            = new System.Drawing.Size(24, 24);
     this.iconTip.TabIndex        = 48;
     this.iconTip.TabStop         = false;
     //
     // iconTransparency
     //
     this.iconTransparency.BackColor = System.Drawing.Color.Transparent;
     this.iconTransparency.Image     = ((System.Drawing.Bitmap)(resources.GetObject("iconTransparency.Image")));
     this.iconTransparency.Location  = new System.Drawing.Point(16, 85);
     this.iconTransparency.Name      = "iconTransparency";
     this.iconTransparency.Size      = new System.Drawing.Size(24, 24);
     this.iconTransparency.TabIndex  = 50;
     this.iconTransparency.TabStop   = false;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.SystemColors.Control;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location  = new System.Drawing.Point(48, 141);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(80, 23);
     this.label5.TabIndex  = 45;
     this.label5.Text      = "Tip :";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.SystemColors.Control;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(48, 11);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 23);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Color :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_transpLabel
     //
     this.m_transpLabel.BackColor = System.Drawing.SystemColors.Control;
     this.m_transpLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_transpLabel.Location  = new System.Drawing.Point(48, 86);
     this.m_transpLabel.Name      = "m_transpLabel";
     this.m_transpLabel.Size      = new System.Drawing.Size(80, 23);
     this.m_transpLabel.TabIndex  = 55;
     this.m_transpLabel.Text      = "Transparency :";
     this.m_transpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_smoothLabel
     //
     this.m_smoothLabel.BackColor = System.Drawing.SystemColors.Control;
     this.m_smoothLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_smoothLabel.Location  = new System.Drawing.Point(48, 273);
     this.m_smoothLabel.Name      = "m_smoothLabel";
     this.m_smoothLabel.Size      = new System.Drawing.Size(80, 23);
     this.m_smoothLabel.TabIndex  = 49;
     this.m_smoothLabel.Text      = "Smoothness :";
     this.m_smoothLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.SystemColors.ControlDark;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location  = new System.Drawing.Point(8, 15);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(153, 23);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Test";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_clearBtn,
         this.inkPicture,
         this.label3
     });
     this.panel1.Location = new System.Drawing.Point(357, 7);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(252, 298);
     this.panel1.TabIndex = 11;
     //
     // m_pressureCheck
     //
     this.m_pressureCheck.Checked         = true;
     this.m_pressureCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.m_pressureCheck.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_pressureCheck.Location        = new System.Drawing.Point(232, 140);
     this.m_pressureCheck.Name            = "m_pressureCheck";
     this.m_pressureCheck.TabIndex        = 6;
     this.m_pressureCheck.Text            = "Ignore pressure";
     this.m_pressureCheck.CheckedChanged += new System.EventHandler(this.PressureCheck_CheckedChanged);
     //
     // m_heightUpDown
     //
     this.m_heightUpDown.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_heightUpDown.DecimalPlaces = 1;
     this.m_heightUpDown.Increment     = new System.Decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_heightUpDown.Location = new System.Drawing.Point(188, 194);
     this.m_heightUpDown.Maximum  = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_heightUpDown.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_heightUpDown.Name      = "m_heightUpDown";
     this.m_heightUpDown.Size      = new System.Drawing.Size(49, 20);
     this.m_heightUpDown.TabIndex  = 7;
     this.m_heightUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_heightUpDown.Value     = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_heightUpDown.ValueChanged += new System.EventHandler(this.HeightUpDown_ValueChanged);
     this.m_heightUpDown.Leave        += new System.EventHandler(this.UpDown_Leave);
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(136, 193);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(44, 23);
     this.label6.TabIndex  = 44;
     this.label6.Text      = "Height";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(136, 221);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(44, 23);
     this.label7.TabIndex  = 43;
     this.label7.Text      = "Width";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(7, 175);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(339, 8);
     this.groupBox1.TabIndex = 42;
     this.groupBox1.TabStop  = false;
     //
     // pictureBox5
     //
     this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox5.Image     = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox5.Image")));
     this.pictureBox5.Location  = new System.Drawing.Point(16, 205);
     this.pictureBox5.Name      = "pictureBox5";
     this.pictureBox5.Size      = new System.Drawing.Size(24, 24);
     this.pictureBox5.TabIndex  = 41;
     this.pictureBox5.TabStop   = false;
     //
     // label8
     //
     this.label8.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label8.Location  = new System.Drawing.Point(48, 205);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(80, 23);
     this.label8.TabIndex  = 40;
     this.label8.Text      = "Size :";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_widthUpDown
     //
     this.m_widthUpDown.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_widthUpDown.DecimalPlaces = 1;
     this.m_widthUpDown.Increment     = new System.Decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_widthUpDown.Location = new System.Drawing.Point(188, 222);
     this.m_widthUpDown.Maximum  = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_widthUpDown.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_widthUpDown.Name      = "m_widthUpDown";
     this.m_widthUpDown.Size      = new System.Drawing.Size(49, 20);
     this.m_widthUpDown.TabIndex  = 8;
     this.m_widthUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_widthUpDown.Value     = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_widthUpDown.ValueChanged += new System.EventHandler(this.WidthUpDown_ValueChanged);
     this.m_widthUpDown.Leave        += new System.EventHandler(this.UpDown_Leave);
     //
     // iconColor
     //
     this.iconColor.BackColor = System.Drawing.Color.Transparent;
     this.iconColor.Image     = ((System.Drawing.Bitmap)(resources.GetObject("iconColor.Image")));
     this.iconColor.Location  = new System.Drawing.Point(16, 10);
     this.iconColor.Name      = "iconColor";
     this.iconColor.Size      = new System.Drawing.Size(24, 24);
     this.iconColor.TabIndex  = 38;
     this.iconColor.TabStop   = false;
     //
     // m_colorBox
     //
     this.m_colorBox.BackColor     = System.Drawing.SystemColors.Window;
     this.m_colorBox.Location      = new System.Drawing.Point(136, 12);
     this.m_colorBox.Name          = "m_colorBox";
     this.m_colorBox.Size          = new System.Drawing.Size(123, 21);
     this.m_colorBox.TabIndex      = 0;
     this.m_colorBox.ColorChanged += new System.EventHandler(this.ColorCombo_ColorChanged);
     //
     // m_optimizeForHighlighter
     //
     this.m_optimizeForHighlighter.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_optimizeForHighlighter.Location        = new System.Drawing.Point(136, 50);
     this.m_optimizeForHighlighter.Name            = "m_optimizeForHighlighter";
     this.m_optimizeForHighlighter.Size            = new System.Drawing.Size(181, 24);
     this.m_optimizeForHighlighter.TabIndex        = 2;
     this.m_optimizeForHighlighter.Text            = "Optimize for highlighting text";
     this.m_optimizeForHighlighter.CheckedChanged += new System.EventHandler(this.OnOptimizeForHighlighter_CheckedChanged);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(241, 196);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(107, 13);
     this.label2.TabIndex  = 56;
     this.label2.Text      = "mm";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(241, 224);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(107, 13);
     this.label4.TabIndex = 57;
     this.label4.Text     = "mm";
     //
     // SettingsDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.m_cancelBtn;
     this.ClientSize        = new System.Drawing.Size(616, 342);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label4,
         this.label2,
         this.m_optimizeForHighlighter,
         this.m_colorBox,
         this.iconColor,
         this.m_transpLabel,
         this.label8,
         this.pictureBox5,
         this.groupBox1,
         this.label7,
         this.label6,
         this.m_widthUpDown,
         this.m_heightUpDown,
         this.m_pressureCheck,
         this.label5,
         this.label1,
         this.pictureBox4,
         this.iconTip,
         this.m_smoothLabel,
         this.iconTransparency,
         this.m_transparencyBar,
         this.m_fitToCurve,
         this.m_antialias,
         this.groupBox3,
         this.groupBox4,
         this.groupBox5,
         this.m_customBtn,
         this.panel1,
         this.m_rectangleRadio,
         this.m_ballRadio,
         this.m_cancelBtn,
         this.m_okBtn
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SettingsDialog";
     this.ShowInTaskbar   = false;
     this.Text            = "Ink Settings";
     this.Load           += new System.EventHandler(this.Settings_Load);
     ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).EndInit();
     this.ResumeLayout(false);
 }
示例#9
0
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(SettingsDialog));
            this.m_customBtn = new System.Windows.Forms.Button();
            this.m_fitToCurve = new System.Windows.Forms.CheckBox();
            this.inkPicture = new Microsoft.Ink.InkPicture();
            this.m_ballRadio = new System.Windows.Forms.RadioButton();
            this.m_rectangleRadio = new System.Windows.Forms.RadioButton();
            this.m_antialias = new System.Windows.Forms.CheckBox();
            this.m_clearBtn = new System.Windows.Forms.Button();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.m_transparencyBar = new System.Windows.Forms.TrackBar();
            this.m_cancelBtn = new System.Windows.Forms.Button();
            this.m_okBtn = new System.Windows.Forms.Button();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.iconTip = new System.Windows.Forms.PictureBox();
            this.iconTransparency = new System.Windows.Forms.PictureBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.m_transpLabel = new System.Windows.Forms.Label();
            this.m_smoothLabel = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.m_pressureCheck = new System.Windows.Forms.CheckBox();
            this.m_heightUpDown = new System.Windows.Forms.NumericUpDown();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.pictureBox5 = new System.Windows.Forms.PictureBox();
            this.label8 = new System.Windows.Forms.Label();
            this.m_widthUpDown = new System.Windows.Forms.NumericUpDown();
            this.iconColor = new System.Windows.Forms.PictureBox();
            this.m_colorBox = new MSR.LST.Controls.InkToolBarControls.ColorComboBox();
            this.m_optimizeForHighlighter = new System.Windows.Forms.CheckBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).BeginInit();
            this.SuspendLayout();
            // 
            // m_customBtn
            // 
            this.m_customBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_customBtn.Location = new System.Drawing.Point(264, 11);
            this.m_customBtn.Name = "m_customBtn";
            this.m_customBtn.TabIndex = 1;
            this.m_customBtn.Text = "Custom...";
            this.m_customBtn.Click += new System.EventHandler(this.CustomBtn_Click);
            // 
            // m_fitToCurve
            // 
            this.m_fitToCurve.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_fitToCurve.Location = new System.Drawing.Point(136, 284);
            this.m_fitToCurve.Name = "m_fitToCurve";
            this.m_fitToCurve.Size = new System.Drawing.Size(80, 24);
            this.m_fitToCurve.TabIndex = 10;
            this.m_fitToCurve.Text = "Fit to curve";
            this.m_fitToCurve.CheckedChanged += new System.EventHandler(this.FitToCurve_CheckedChanged);
            // 
            // inkPicture
            // 
            this.inkPicture.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.inkPicture.BackColor = System.Drawing.SystemColors.Window;
            this.inkPicture.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.inkPicture.Location = new System.Drawing.Point(8, 38);
            this.inkPicture.MarginX = -2147483648;
            this.inkPicture.MarginY = -2147483648;
            this.inkPicture.Name = "inkPicture";
            this.inkPicture.Size = new System.Drawing.Size(236, 252);
            this.inkPicture.TabIndex = 7;
            this.inkPicture.Stroke += new Microsoft.Ink.InkCollectorStrokeEventHandler(this.OnInkPicture_Stroke);
            // 
            // m_ballRadio
            // 
            this.m_ballRadio.Checked = true;
            this.m_ballRadio.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_ballRadio.Location = new System.Drawing.Point(136, 132);
            this.m_ballRadio.Name = "m_ballRadio";
            this.m_ballRadio.Size = new System.Drawing.Size(72, 24);
            this.m_ballRadio.TabIndex = 4;
            this.m_ballRadio.TabStop = true;
            this.m_ballRadio.Text = "Ball";
            this.m_ballRadio.CheckedChanged += new System.EventHandler(this.RoundRadio_CheckedChanged);
            // 
            // m_rectangleRadio
            // 
            this.m_rectangleRadio.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_rectangleRadio.Location = new System.Drawing.Point(136, 152);
            this.m_rectangleRadio.Name = "m_rectangleRadio";
            this.m_rectangleRadio.Size = new System.Drawing.Size(72, 24);
            this.m_rectangleRadio.TabIndex = 5;
            this.m_rectangleRadio.TabStop = true;
            this.m_rectangleRadio.Text = "Rectangle";
            this.m_rectangleRadio.CheckedChanged += new System.EventHandler(this.RectangleRadio_CheckedChanged);
            // 
            // m_antialias
            // 
            this.m_antialias.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_antialias.Location = new System.Drawing.Point(136, 262);
            this.m_antialias.Name = "m_antialias";
            this.m_antialias.Size = new System.Drawing.Size(80, 24);
            this.m_antialias.TabIndex = 9;
            this.m_antialias.Text = "Antialiased";
            this.m_antialias.CheckedChanged += new System.EventHandler(this.Antialias_CheckedChanged);
            // 
            // m_clearBtn
            // 
            this.m_clearBtn.BackColor = System.Drawing.SystemColors.ControlDark;
            this.m_clearBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_clearBtn.Location = new System.Drawing.Point(169, 8);
            this.m_clearBtn.Name = "m_clearBtn";
            this.m_clearBtn.TabIndex = 0;
            this.m_clearBtn.Text = "Clear";
            this.m_clearBtn.Click += new System.EventHandler(this.ClearBtn_Click);
            // 
            // groupBox3
            // 
            this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.groupBox3.Location = new System.Drawing.Point(7, 248);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(339, 8);
            this.groupBox3.TabIndex = 51;
            this.groupBox3.TabStop = false;
            // 
            // groupBox4
            // 
            this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.groupBox4.Location = new System.Drawing.Point(7, 118);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(339, 8);
            this.groupBox4.TabIndex = 52;
            this.groupBox4.TabStop = false;
            // 
            // groupBox5
            // 
            this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.groupBox5.Location = new System.Drawing.Point(7, 39);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(339, 8);
            this.groupBox5.TabIndex = 53;
            this.groupBox5.TabStop = false;
            // 
            // m_transparencyBar
            // 
            this.m_transparencyBar.BackColor = System.Drawing.SystemColors.Control;
            this.m_transparencyBar.LargeChange = 10;
            this.m_transparencyBar.Location = new System.Drawing.Point(126, 75);
            this.m_transparencyBar.Maximum = 100;
            this.m_transparencyBar.Name = "m_transparencyBar";
            this.m_transparencyBar.Size = new System.Drawing.Size(136, 45);
            this.m_transparencyBar.TabIndex = 3;
            this.m_transparencyBar.TickStyle = System.Windows.Forms.TickStyle.Both;
            this.m_transparencyBar.ValueChanged += new System.EventHandler(this.TransparencyBar_ValueChanged);
            // 
            // m_cancelBtn
            // 
            this.m_cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.m_cancelBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_cancelBtn.Location = new System.Drawing.Point(537, 312);
            this.m_cancelBtn.Name = "m_cancelBtn";
            this.m_cancelBtn.Size = new System.Drawing.Size(72, 23);
            this.m_cancelBtn.TabIndex = 12;
            this.m_cancelBtn.Text = "&Cancel";
            // 
            // m_okBtn
            // 
            this.m_okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.m_okBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_okBtn.Location = new System.Drawing.Point(454, 312);
            this.m_okBtn.Name = "m_okBtn";
            this.m_okBtn.TabIndex = 13;
            this.m_okBtn.Text = "&OK";
            // 
            // pictureBox4
            // 
            this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox4.Image = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox4.Image")));
            this.pictureBox4.Location = new System.Drawing.Point(16, 273);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(24, 24);
            this.pictureBox4.TabIndex = 47;
            this.pictureBox4.TabStop = false;
            // 
            // iconTip
            // 
            this.iconTip.BackColor = System.Drawing.Color.Transparent;
            this.iconTip.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("iconTip.BackgroundImage")));
            this.iconTip.Location = new System.Drawing.Point(16, 140);
            this.iconTip.Name = "iconTip";
            this.iconTip.Size = new System.Drawing.Size(24, 24);
            this.iconTip.TabIndex = 48;
            this.iconTip.TabStop = false;
            // 
            // iconTransparency
            // 
            this.iconTransparency.BackColor = System.Drawing.Color.Transparent;
            this.iconTransparency.Image = ((System.Drawing.Bitmap)(resources.GetObject("iconTransparency.Image")));
            this.iconTransparency.Location = new System.Drawing.Point(16, 85);
            this.iconTransparency.Name = "iconTransparency";
            this.iconTransparency.Size = new System.Drawing.Size(24, 24);
            this.iconTransparency.TabIndex = 50;
            this.iconTransparency.TabStop = false;
            // 
            // label5
            // 
            this.label5.BackColor = System.Drawing.SystemColors.Control;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label5.Location = new System.Drawing.Point(48, 141);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(80, 23);
            this.label5.TabIndex = 45;
            this.label5.Text = "Tip :";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.SystemColors.Control;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label1.Location = new System.Drawing.Point(48, 11);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(88, 23);
            this.label1.TabIndex = 1;
            this.label1.Text = "Color :";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // m_transpLabel
            // 
            this.m_transpLabel.BackColor = System.Drawing.SystemColors.Control;
            this.m_transpLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.m_transpLabel.Location = new System.Drawing.Point(48, 86);
            this.m_transpLabel.Name = "m_transpLabel";
            this.m_transpLabel.Size = new System.Drawing.Size(80, 23);
            this.m_transpLabel.TabIndex = 55;
            this.m_transpLabel.Text = "Transparency :";
            this.m_transpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // m_smoothLabel
            // 
            this.m_smoothLabel.BackColor = System.Drawing.SystemColors.Control;
            this.m_smoothLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.m_smoothLabel.Location = new System.Drawing.Point(48, 273);
            this.m_smoothLabel.Name = "m_smoothLabel";
            this.m_smoothLabel.Size = new System.Drawing.Size(80, 23);
            this.m_smoothLabel.TabIndex = 49;
            this.m_smoothLabel.Text = "Smoothness :";
            this.m_smoothLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label3
            // 
            this.label3.BackColor = System.Drawing.SystemColors.ControlDark;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label3.Location = new System.Drawing.Point(8, 15);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(153, 23);
            this.label3.TabIndex = 8;
            this.label3.Text = "Test";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right);
            this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
            this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                 this.m_clearBtn,
                                                                                 this.inkPicture,
                                                                                 this.label3});
            this.panel1.Location = new System.Drawing.Point(357, 7);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(252, 298);
            this.panel1.TabIndex = 11;
            // 
            // m_pressureCheck
            // 
            this.m_pressureCheck.Checked = true;
            this.m_pressureCheck.CheckState = System.Windows.Forms.CheckState.Checked;
            this.m_pressureCheck.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_pressureCheck.Location = new System.Drawing.Point(232, 140);
            this.m_pressureCheck.Name = "m_pressureCheck";
            this.m_pressureCheck.TabIndex = 6;
            this.m_pressureCheck.Text = "Ignore pressure";
            this.m_pressureCheck.CheckedChanged += new System.EventHandler(this.PressureCheck_CheckedChanged);
            // 
            // m_heightUpDown
            // 
            this.m_heightUpDown.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.m_heightUpDown.DecimalPlaces = 1;
            this.m_heightUpDown.Increment = new System.Decimal(new int[] {
                                                                             1,
                                                                             0,
                                                                             0,
                                                                             65536});
            this.m_heightUpDown.Location = new System.Drawing.Point(188, 194);
            this.m_heightUpDown.Maximum = new System.Decimal(new int[] {
                                                                           10,
                                                                           0,
                                                                           0,
                                                                           0});
            this.m_heightUpDown.Minimum = new System.Decimal(new int[] {
                                                                           1,
                                                                           0,
                                                                           0,
                                                                           65536});
            this.m_heightUpDown.Name = "m_heightUpDown";
            this.m_heightUpDown.Size = new System.Drawing.Size(49, 20);
            this.m_heightUpDown.TabIndex = 7;
            this.m_heightUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.m_heightUpDown.Value = new System.Decimal(new int[] {
                                                                         10,
                                                                         0,
                                                                         0,
                                                                         0});
            this.m_heightUpDown.ValueChanged += new System.EventHandler(this.HeightUpDown_ValueChanged);
            this.m_heightUpDown.Leave += new System.EventHandler(this.UpDown_Leave);
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(136, 193);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(44, 23);
            this.label6.TabIndex = 44;
            this.label6.Text = "Height";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(136, 221);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(44, 23);
            this.label7.TabIndex = 43;
            this.label7.Text = "Width";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // groupBox1
            // 
            this.groupBox1.Location = new System.Drawing.Point(7, 175);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(339, 8);
            this.groupBox1.TabIndex = 42;
            this.groupBox1.TabStop = false;
            // 
            // pictureBox5
            // 
            this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox5.Image = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox5.Image")));
            this.pictureBox5.Location = new System.Drawing.Point(16, 205);
            this.pictureBox5.Name = "pictureBox5";
            this.pictureBox5.Size = new System.Drawing.Size(24, 24);
            this.pictureBox5.TabIndex = 41;
            this.pictureBox5.TabStop = false;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label8.Location = new System.Drawing.Point(48, 205);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(80, 23);
            this.label8.TabIndex = 40;
            this.label8.Text = "Size :";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // m_widthUpDown
            // 
            this.m_widthUpDown.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.m_widthUpDown.DecimalPlaces = 1;
            this.m_widthUpDown.Increment = new System.Decimal(new int[] {
                                                                            1,
                                                                            0,
                                                                            0,
                                                                            65536});
            this.m_widthUpDown.Location = new System.Drawing.Point(188, 222);
            this.m_widthUpDown.Maximum = new System.Decimal(new int[] {
                                                                          10,
                                                                          0,
                                                                          0,
                                                                          0});
            this.m_widthUpDown.Minimum = new System.Decimal(new int[] {
                                                                          1,
                                                                          0,
                                                                          0,
                                                                          65536});
            this.m_widthUpDown.Name = "m_widthUpDown";
            this.m_widthUpDown.Size = new System.Drawing.Size(49, 20);
            this.m_widthUpDown.TabIndex = 8;
            this.m_widthUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.m_widthUpDown.Value = new System.Decimal(new int[] {
                                                                        10,
                                                                        0,
                                                                        0,
                                                                        0});
            this.m_widthUpDown.ValueChanged += new System.EventHandler(this.WidthUpDown_ValueChanged);
            this.m_widthUpDown.Leave += new System.EventHandler(this.UpDown_Leave);
            // 
            // iconColor
            // 
            this.iconColor.BackColor = System.Drawing.Color.Transparent;
            this.iconColor.Image = ((System.Drawing.Bitmap)(resources.GetObject("iconColor.Image")));
            this.iconColor.Location = new System.Drawing.Point(16, 10);
            this.iconColor.Name = "iconColor";
            this.iconColor.Size = new System.Drawing.Size(24, 24);
            this.iconColor.TabIndex = 38;
            this.iconColor.TabStop = false;
            // 
            // m_colorBox
            // 
            this.m_colorBox.BackColor = System.Drawing.SystemColors.Window;
            this.m_colorBox.Location = new System.Drawing.Point(136, 12);
            this.m_colorBox.Name = "m_colorBox";
            this.m_colorBox.Size = new System.Drawing.Size(123, 21);
            this.m_colorBox.TabIndex = 0;
            this.m_colorBox.ColorChanged += new System.EventHandler(this.ColorCombo_ColorChanged);
            // 
            // m_optimizeForHighlighter
            // 
            this.m_optimizeForHighlighter.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.m_optimizeForHighlighter.Location = new System.Drawing.Point(136, 50);
            this.m_optimizeForHighlighter.Name = "m_optimizeForHighlighter";
            this.m_optimizeForHighlighter.Size = new System.Drawing.Size(181, 24);
            this.m_optimizeForHighlighter.TabIndex = 2;
            this.m_optimizeForHighlighter.Text = "Optimize for highlighting text";
            this.m_optimizeForHighlighter.CheckedChanged += new System.EventHandler(this.OnOptimizeForHighlighter_CheckedChanged);
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(241, 196);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(107, 13);
            this.label2.TabIndex = 56;
            this.label2.Text = "mm";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(241, 224);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(107, 13);
            this.label4.TabIndex = 57;
            this.label4.Text = "mm";
            // 
            // SettingsDialog
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.CancelButton = this.m_cancelBtn;
            this.ClientSize = new System.Drawing.Size(616, 342);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.label4,
                                                                          this.label2,
                                                                          this.m_optimizeForHighlighter,
                                                                          this.m_colorBox,
                                                                          this.iconColor,
                                                                          this.m_transpLabel,
                                                                          this.label8,
                                                                          this.pictureBox5,
                                                                          this.groupBox1,
                                                                          this.label7,
                                                                          this.label6,
                                                                          this.m_widthUpDown,
                                                                          this.m_heightUpDown,
                                                                          this.m_pressureCheck,
                                                                          this.label5,
                                                                          this.label1,
                                                                          this.pictureBox4,
                                                                          this.iconTip,
                                                                          this.m_smoothLabel,
                                                                          this.iconTransparency,
                                                                          this.m_transparencyBar,
                                                                          this.m_fitToCurve,
                                                                          this.m_antialias,
                                                                          this.groupBox3,
                                                                          this.groupBox4,
                                                                          this.groupBox5,
                                                                          this.m_customBtn,
                                                                          this.panel1,
                                                                          this.m_rectangleRadio,
                                                                          this.m_ballRadio,
                                                                          this.m_cancelBtn,
                                                                          this.m_okBtn});
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "SettingsDialog";
            this.ShowInTaskbar = false;
            this.Text = "Ink Settings";
            this.Load += new System.EventHandler(this.Settings_Load);
            ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).EndInit();
            this.ResumeLayout(false);

        }