void checkBox1_CheckedChanged(object sender, EventArgs e)
{
CheckBox checkcontrol = sender as CheckBox;
if (checkcontrol.Checked == true)
{
foreach (Control item in this.panel1.Controls)
{
if (item == sender)