for (int x = 0; x < checkedListBoxLinesToProcess.Items.Count; x++)
{
elb = new EnhancedCheckedListBox();
elb.message = checkedListBoxLinesToProcess.Items[x].ToString();
elb.indexValue = x;
elb.mk = MoveKind.None;
elb.ischecked = checkedListBoxLinesToProcess.GetItemChecked(x);
eclb.Add(elb);
}
But what are they? What is "owner" "parent" and "child" ? Are they controls?
Am I doing this correctly?
Open in new window