Exemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e)
 {
     if (_Location != null)
     {
         _Location.Validate();
     }
 }
Exemplo n.º 2
0
        private void OnLocationBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentLocation = uxLocationBindingSource.Current as Entities.Location;

            if (_currentLocation != null)
            {
                _currentLocation.Validate();
            }
            //_Location.Validate();
            OnCurrentEntityChanged();
        }
Exemplo n.º 3
0
		private void OnLocationBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentLocation = uxLocationBindingSource.Current as Entities.Location;
			
			if (_currentLocation != null)
			{
				_currentLocation.Validate();
			}
			//_Location.Validate();
			OnCurrentEntityChanged();
		}