我正在使用DateTimePicker,我将它的customFormat属性设置为 dd / MM / yyyy 。在系统中,我的格式为 M / d / yyyy 。如何使DateTimePicker独立于系统之一。
我尝试过像
这样的陈述 DateInstance.Format = DateTimePickerFormat.Custom;
但它不起作用。
这给我带来了两个问题:
1)当我写诸如
之类的陈述时 DateInstance.Value = DateTime.Now;
它没有在日期时间选择器中正确显示它[例如:2014年7月5日(月/日)将显示为05/29/2017(年/月/日)]
2)当我尝试使用鼠标选择日期时,它只会更改日期值,而月份和年份则保持不变。