| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace PaintDotNet.Processing.DepthExtensionComponent{    internal class DepthExtensionPicTool : UserControl    {        public PictureBox pictureBox1;        public Panel panel2;        public Panel panel1;        public DepthExtensionPicTool()        {            InitializeComponent();         }        private void InitializeComponent()        {            this.pictureBox1 = new System.Windows.Forms.PictureBox();            this.panel1 = new System.Windows.Forms.Panel();            this.panel2 = new System.Windows.Forms.Panel();            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();            this.SuspendLayout();            //             // pictureBox1            //             this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)             | System.Windows.Forms.AnchorStyles.Left)             | System.Windows.Forms.AnchorStyles.Right)));            this.pictureBox1.BackColor = System.Drawing.Color.White;            this.pictureBox1.Location = new System.Drawing.Point(0, 0);            this.pictureBox1.Name = "pictureBox1";            this.pictureBox1.Size = new System.Drawing.Size(220, 220);            this.pictureBox1.TabIndex = 0;            this.pictureBox1.TabStop = false;            //             // panel1            //             this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));            this.panel1.BackColor = System.Drawing.Color.White;            this.panel1.Location = new System.Drawing.Point(200, 200);            this.panel1.Name = "panel1";            this.panel1.Size = new System.Drawing.Size(20, 20);            this.panel1.TabIndex = 0;            this.panel1.Visible = false;            //             // panel2            //             this.panel2.Anchor = System.Windows.Forms.AnchorStyles.None;            this.panel2.BackColor = System.Drawing.Color.White;            this.panel2.Location = new System.Drawing.Point(85, 85);            this.panel2.Name = "panel2";            this.panel2.Size = new System.Drawing.Size(50, 50);            this.panel2.TabIndex = 1;            //             // DepthExtensionPicTool            //             this.Controls.Add(this.panel2);            this.Controls.Add(this.panel1);            this.Controls.Add(this.pictureBox1);            this.Name = "DepthExtensionPicTool";            this.Size = new System.Drawing.Size(220, 220);            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();            this.ResumeLayout(false);        }    }}
 |