有没有办法在 winform datetimepicker 中手动设置日期和月份名称?

发布于 2024-08-09 01:54:17 字数 147 浏览 10 评论 0原文

我想用英语设置日期时间选择器的日期

,但不幸的是,日期时间选择器不支持文化,

所以我想我可以继承控件,并自己设置日期和月份名称,

但我不知道

有人如何拥有有什么想法吗?

预先感谢

山姆

I want to set the days of a datetimepicker in english

but unfortunatly, the datetime picker don't support culture

so I think I can inherit the control, and set the days and months name by myself

but I don't know how

anybody has an idea for that ?

thanks in advance

Sam

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

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

发布评论

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

评论(1

余生再见 2024-08-16 01:54:17

您可以从重写 OnPaint 开始,如下所述:派生的 DateTimePicker

当您到达设置文本的部分时,您可以取出对 this.Text 的引用并放入您自己的字符串。像这样的东西:

     Thread.CurrentThread.CurrentCulture = 
                    CultureInfo.CreateSpecificCulture("en-US");
     string newlyFormattedText = this.Value.ToString("dddd, MMMM dd, yyyy");
     g.DrawString(newlyFormattedText, this.Font, Brushes.Black, 0, 2);

You can start with overriding OnPaint as outlined here: derived DateTimePicker

When you get to the part where you're setting the text, you can take out the reference to this.Text and put in your own string. Something like this:

     Thread.CurrentThread.CurrentCulture = 
                    CultureInfo.CreateSpecificCulture("en-US");
     string newlyFormattedText = this.Value.ToString("dddd, MMMM dd, yyyy");
     g.DrawString(newlyFormattedText, this.Font, Brushes.Black, 0, 2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文