private void butOK_Click(object sender, EventArgs e) { for (int i = 0; i < _listOIDInternal.Count; i++) { OIDInternals.Update(_listOIDInternal[i]); } DialogResult = DialogResult.OK; }
private void butOk_Click(object sender, EventArgs e) { //TODO: Validate OIDs and provide warning s if they do not make sense. For instance, if the Actual values do not match the reccomended values. //Also if the other OIDs are not children of the root OID. etc... for (int i = 0; i < ListOIDInternal.Count; i++) { OIDInternals.Update(ListOIDInternal[i]); } DialogResult = DialogResult.OK; }