我正在开发通用Windows应用程序。我有一个TextBox
,我只想接受数字。另外,将TextBox
格式化为美国货币(不带$符号 - 只需逗号和小数)
我的TextChanged
下面已经有了一个工作代码。此外,评论更容易阅读。我只是想知道,因为我对此很新,如果我这样做的话呢?有没有更好的方法来实现同样的目标?对我来说,MS感觉很奇怪,MS不会像这样简单的方式包括烘焙。
由于
private void textBox_TextChanged(object sender, TextChangedEventArgs e)
{
// Do not apply if textbox is empty - needed to avoid exceptions
if (textBox.Text.Length == 0) { return; }
decimal charInput;
string value = textBox.Text.Replace(",", "").Replace(".", "").TrimStart('0');
// Make sure to only accept numbers as input
if (decimal.TryParse(value, out charInput))
{
charInput /= 100;
//Unsub the event so we don't enter a loop
textBox.TextChanged -= textBox_TextChanged;
//Format numbers as currency
textBox.Text = string.Format(new System.Globalization.CultureInfo("en-US"), "{0:N}", charInput);
textBox.TextChanged += textBox_TextChanged;
textBox.Select(textBox.Text.Length, 0);
}
else {
// Remove last character if NOT a number
textBox.Text = textBox.Text.Remove((textBox.Text.Length - 1));
// force cursor to the end of text to avoid random movements
textBox.SelectionStart = textBox.Text.Length;
}
}
答案 0 :(得分:0)
AFAIK那里没有具体的课程。但是,下面是一个MSDN article,它显示了一个由TextBox驱动的类,它在过去对我来说很好。
希望这有帮助!
https://msdn.microsoft.com/en-us/library/ms229644(v=vs.100).aspx