Change period to comma in amount input textbox

This commit is contained in:
Stedd 2021-10-26 20:25:26 +02:00
parent 671cdfbf12
commit 99f614734a
1 changed files with 5 additions and 0 deletions

View File

@ -59,5 +59,10 @@ namespace CryptoCalc
t.Comment = "Test"; t.Comment = "Test";
return t; return t;
} }
private void inputAmount_LostFocus(object sender, RoutedEventArgs e)
{
inputAmount.Text = inputAmount.Text.Replace(".", ",");
}
} }
} }