有没有办法在 winform datetimepicker 中手动设置日期和月份名称?
我想用英语设置日期时间选择器的日期
,但不幸的是,日期时间选择器不支持文化,
所以我想我可以继承控件,并自己设置日期和月份名称,
但我不知道
有人如何拥有有什么想法吗?
预先感谢
山姆
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从重写 OnPaint 开始,如下所述:派生的 DateTimePicker
当您到达设置文本的部分时,您可以取出对 this.Text 的引用并放入您自己的字符串。像这样的东西:
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: