gpt4 book ai didi

c# - 按键事件小数点后限制数字

转载 作者:行者123 更新时间:2023-11-30 15:42:42 25 4
gpt4 key购买 nike

我使用下面的代码只从用户那里获取数字和一个小数点,这对我来说在 KeyPress 事件上工作正常:

if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && e.KeyChar != '.')
{
e.Handled = true;
}

if (e.KeyChar == '.' && (sender as TextBox).Text.IndexOf('.') > -1)
{
e.Handled = true;
}

现在我想限制小数点/点后的数字/数字,即 35.25468,这意味着点/小数点后只需要 6 个数字/数字。

更新我!

最佳答案

private void price_tb_KeyPress(object sender, KeyPressEventArgs e)
{

if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && e.KeyChar != '.')
{
e.Handled = true;
}

// only allow one decimal point
if (e.KeyChar == '.' && (sender as TextBox).Text.IndexOf('.') > -1)
{
e.Handled = true;
}

if (!char.IsControl(e.KeyChar))
{

TextBox textBox = (TextBox)sender;

if (textBox.Text.IndexOf('.') > -1 &&
textBox.Text.Substring(textBox.Text.IndexOf('.')).Length >= 3)
{
e.Handled = true;
}

}

}

这段代码会帮助你。它只需要一位小数和一位小数后两位数,您可以相应地更改它。

关于c# - 按键事件小数点后限制数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7259128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com