コード例 #1
0
        private void FeatureCheckbox_CheckedChanged(object sender, EventArgs e)
        {
            CheckBox chkbox = (CheckBox)sender;

            if (chkbox.Checked)
            {
                manifestHelper.AddFeature(ParentControl.ControlDetails, chkbox.Text);
            }
            else
            {
                manifestHelper.RemoveFeature(ParentControl.ControlDetails, chkbox.Text);
            }
        }