尊重 Windows 时间格式的即时更改

发布于 2024-07-13 10:48:46 字数 291 浏览 3 评论 0原文

我正在开发一个 C# 应用程序,该应用程序尝试尊重其运行系统的时间格式。 如果 Windows 控制面板更改为 24 小时格式,即应用程序显示时间的格式。无论如何,它都会成功执行此操作,但只有在应用程序运行之前更改时间格式时才会起作用。 如果您在应用程序运行时更改 Windows 时间格式,它将不会使用更新后的格式。

是否有任何类型的 Windows 事件或其他方式来检索最新的时间格式? 我们当前使用 DateTimeFormatInfo LongTimePattern,因为它会根据我们处于 12 小时还是 24 小时时间而变化。

I am working on a C# app that tries to respect the time format of the system it is running on. If the Windows control panel is changed to 24 hour format, that is the format the app will display time in. Anyway, it does this successfully, except it will only work if the time format is changed before the app is run. If you change the Windows time format while the app is running, it will not use the updated format.

Is there any kind of Windows event or other way to retrieve the latest time format? We currently use the DateTimeFormatInfo LongTimePattern because it changes based on whether we are in 12 or 24 hour time.

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

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-07-20 10:48:46

Microsoft.Win32 命名空间中有一个 SystemEvents 类,其中包含一组可以订阅的静态事件。 您需要订阅 UserPreferenceChanged 事件:

SystemEvents.UserPreferenceChanged += new UserPreferenceChanged;

/* Other stuff... */

private static void UserPreferenceChanged(object s, UserPreferenceChangedEventArgs e)
{
    if (e.Category == UserPreferenceCategory.Locale)
    {
        /* They changed regional settings, so do your work here */
    }
}

There is a class SystemEvents in the Microsoft.Win32 namespace which has a set of static events you can subscribe to. You'll want to subscribe to the UserPreferenceChanged event:

SystemEvents.UserPreferenceChanged += new UserPreferenceChanged;

/* Other stuff... */

private static void UserPreferenceChanged(object s, UserPreferenceChangedEventArgs e)
{
    if (e.Category == UserPreferenceCategory.Locale)
    {
        /* They changed regional settings, so do your work here */
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文