     private void button1_Click(object sender, EventArgs e)
 {
     
      // set behindColor to color specified in text box
       behindColor = Color.FromName(textBox1.Text );
       Invalidate(); // refresh Form
 }
