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