     private void Form1_Load(object sender, EventArgs e)
        {
            selectColor = 1;
            selectDash = 1;
            label1.Text = "Width";
            textBox1.Text = "1";
            groupBox1.Text = "Dash Is";
            radioButton1.Text = "Dash";
            radioButton2.Text = "Dot";
            radioButton3.Text = "DashDot";
            radioButton4.Text = "DashDotDot";
            radioButton5.Text = "Solid";
            groupBox2.Text = "Color Is ";
            radioButton6.Text = "Red";
            radioButton7.Text = "Green";
            radioButton8.Text = "Blue";
        
        }
