private void txtMAximumRefund_PreviewTextInput(object sender, TextCompositionEventArgs e)
 {
     AppLib.CheckIsNumeric(e);
 }
Exemple #2
0
 private void txtRejoinAmount_PreviewTextInput(object sender, TextCompositionEventArgs e)
 {
     AppLib.CheckIsNumeric(e);
 }
Exemple #3
0
 private void txtEntranceFeed_PreviewTextInput(object sender, TextCompositionEventArgs e)
 {
     AppLib.CheckIsNumeric(e);
 }
Exemple #4
0
 private void txtSubscription_PreviewTextInput(object sender, TextCompositionEventArgs e)
 {
     AppLib.CheckIsNumeric(e);
 }
Exemple #5
0
 private void txtPhoneNo_TextInput(object sender, TextCompositionEventArgs e)
 {
     AppLib.CheckIsNumeric(e);
 }