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.
有没有办法在 NummericUpDown 中使用 C# 将点从我的小键盘更改为逗号?在欧洲,我们使用逗号而不是小数点作为十进制数字。
你缝有一个 WinForms 应用程序。您只需要使用正确的语言环境。在显示任何 UI 之前(在 Program 类中)更改当前线程的 CurrentCulture。这应该按照您想要的方式格式化您的数据。下面的代码显示了一个示例。
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");