diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 980432e..866e300 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -59,5 +59,10 @@ namespace CryptoCalc t.Comment = "Test"; return t; } + + private void inputAmount_LostFocus(object sender, RoutedEventArgs e) + { + inputAmount.Text = inputAmount.Text.Replace(".", ","); + } } }