1.CheckBox

private void checkBox1_CheckedChanged(object sender, EventArgs e)

        {

            if (checkBox1.Checked)

            {

                if (textBox1.Text == "")

                {

                    textBox1.Text = checkBox1.Text;

                }

                else

                {

                    textBox1.Text += "、" + checkBox1.Text;

                }

            }

        }

 

        private void checkBox2_CheckedChanged(object sender, EventArgs e)

        {

            if (checkBox2.Checked)

            {

                if (textBox1.Text == "")

                {

                    textBox1.Text = checkBox1.Text;

                }

                else

                {

                    textBox1.Text += "、" + checkBox2.Text;

                }

            }

        }

 

        private void checkBox3_CheckedChanged(object sender, EventArgs e)

        {

            if (checkBox3.Checked)

            {

                if (textBox1.Text == "")

                {

                    textBox1.Text = checkBox1.Text;

                }

                else

                {

                    textBox1.Text += "、" + checkBox3.Text;

                }

            }

        }

 

        private void checkBox4_CheckedChanged(object sender, EventArgs e)

        {

            if (checkBox4.Checked)

            {

                if (textBox1.Text == "")

                {

                    textBox1.Text = checkBox1.Text;

                }

                else

                {

                    textBox1.Text += "、" + checkBox4.Text;

                }

            }