Change period to comma in amount input textbox
This commit is contained in:
parent
671cdfbf12
commit
99f614734a
|
@ -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(".", ",");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue