private void Form1_Load(object sender, EventArgs e)
{
  label1.AutoSize = true;
  label1.ResetText();
  checkedListBox1.Items.Add("Red");
  checkedListBox1.Items.Add("Blue");
  checkedListBox1.Items.Add("Green");
  checkedListBox1.Items.Add("White");
}
