/// <summary> /// /// </summary> private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e) { if (_Illustration != null) { _Illustration.Validate(); } }
private void OnIllustrationBindingSourceCurrentItemChanged(object sender, System.EventArgs e) { _currentIllustration = uxIllustrationBindingSource.Current as Entities.Illustration; if (_currentIllustration != null) { _currentIllustration.Validate(); } //_Illustration.Validate(); OnCurrentEntityChanged(); }