Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e)
 {
     if (_ProductReview != null)
     {
         _ProductReview.Validate();
     }
 }
Esempio n. 2
0
        private void OnProductReviewBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentProductReview = uxProductReviewBindingSource.Current as Entities.ProductReview;

            if (_currentProductReview != null)
            {
                _currentProductReview.Validate();
            }
            //_ProductReview.Validate();
            OnCurrentEntityChanged();
        }
		private void OnProductReviewBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentProductReview = uxProductReviewBindingSource.Current as Entities.ProductReview;
			
			if (_currentProductReview != null)
			{
				_currentProductReview.Validate();
			}
			//_ProductReview.Validate();
			OnCurrentEntityChanged();
		}