Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道用户不能在同一个文本框中输入多个点的任何代码,例如:
0.0.01
如果他们输入 0.1,则不允许在输入字段中再次输入任何点。
如果这是在 Winforms 中,则只需签入 TextChanged 事件。只需检查输入的最后一个字符是否为“.”。如果是,还有第二个“。” 已经在 TextBox 中,那么您只需删除最后一个点。
以下应该工作