/// <summary>
 ///
 /// </summary>
 private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e)
 {
     if (_ShipMethod != null)
     {
         _ShipMethod.Validate();
     }
 }
Example #2
0
        private void OnShipMethodBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentShipMethod = uxShipMethodBindingSource.Current as Entities.ShipMethod;

            if (_currentShipMethod != null)
            {
                _currentShipMethod.Validate();
            }
            //_ShipMethod.Validate();
            OnCurrentEntityChanged();
        }
		private void OnShipMethodBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentShipMethod = uxShipMethodBindingSource.Current as Entities.ShipMethod;
			
			if (_currentShipMethod != null)
			{
				_currentShipMethod.Validate();
			}
			//_ShipMethod.Validate();
			OnCurrentEntityChanged();
		}