/// <summary> /// /// </summary> private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e) { if (_Store != null) { _Store.Validate(); } }
private void OnStoreBindingSourceCurrentItemChanged(object sender, System.EventArgs e) { _currentStore = uxStoreBindingSource.Current as Entities.Store; if (_currentStore != null) { _currentStore.Validate(); } //_Store.Validate(); OnCurrentEntityChanged(); }