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

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