类型 。代入 ,

发布于 2025-01-08 14:50:49 字数 183 浏览 1 评论 0原文

我有一个文本框,我希望在其中键入 . 而不是 ,

if (e.KeyCode == Keys.Oemcomma) tbPrecio.Text = tbPrecio.Text.Split(',')[0]+".";

但它不能正常工作。

I have a textbox in which I want the . be typed instead of the ,.

if (e.KeyCode == Keys.Oemcomma) tbPrecio.Text = tbPrecio.Text.Split(',')[0]+".";

But it doesn't work properly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仲春光 2025-01-15 14:50:49

只需将处理程序方法更改为:

private void tbPrecio_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Oemcomma)
    {
        tbPrecio.AppendText(".");
        e.SuppressKeyPress = true;
    }
}

我认为这里添加的关键是 SuppressKeyPress

Simply change your handler method to:

private void tbPrecio_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Oemcomma)
    {
        tbPrecio.AppendText(".");
        e.SuppressKeyPress = true;
    }
}

I think the key addition here is SuppressKeyPress.

萝莉病 2025-01-15 14:50:49

在这种情况下您可以使用屏蔽输入来代替吗?

http://digitalbush.com/projects/masked-input-plugin/

自动替换角色让一些人感到害怕。

Is this a situation where you could use a masked input instead?

http://digitalbush.com/projects/masked-input-plugin/

Automatically replacing characters freaks some people out.

不爱素颜 2025-01-15 14:50:49

尝试这个代码

private void tbPrecio_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Oemcomma)
            tbPrecio.Text = tbPrecio.Text.Replace(',','.');
        tbPrecio.Select(tbPrecio.Text.Length, 0);
}

,但使用@Jason's Logic,因为这是最佳的

try this code

private void tbPrecio_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Oemcomma)
            tbPrecio.Text = tbPrecio.Text.Replace(',','.');
        tbPrecio.Select(tbPrecio.Text.Length, 0);
}

But use @Jason's Logic as that's optimal

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文