/// <summary>
        /// Triggers when a checkbox is toggled
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void CheckboxToggle(object sender, EventArgs e)
        {
            //On checkbox toggle, save to the config
            CustomCheckBox box = (sender as CustomCheckBox);

            box.StartRotate();
            ScreenToConfig(box);
        }