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