Example #1
0
 private void Mass_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(Mass, 0);
 }
Example #2
0
 private void BurnRateTextBox_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(BurnRateTextBox, 0);
 }
Example #3
0
 private void ColorTextBox_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(ColorTextBox, 1);
 }
Example #4
0
 private void Capacity_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(Capacity, 0);
 }
Example #5
0
 private void KilometerageTextBox_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(KilometerageTextBox, 0);
 }
Example #6
0
 private void Engine_LostFocus(object sender, RoutedEventArgs e)
 {
     Lock = DataOperations.ValidateInput(Engine, 0);
 }