 private void Draw_Click(object sender, EventArgs e)
        {
            Graphics Graph;
            Graph = this.CreateGraphics();
            Graph.Clear(Color.Silver);
            Width1 = Convert.ToInt16(textBox1.Text, 10);
            SetColor();
            SetDash();
            Bitmap x = new Bitmap("D:\\WINDOWS\\Santa Fe Stucco.bmp");
            x.GetPixel(10, 10);
            for (int i = 20; i <= 220; i += 20)
                Graph.DrawLine(Pen1, i, 10, i, 150);
        }