如何在DateTimePicker的值中添加秒数?

时间:2010-06-22 03:12:06

标签: c# datetimepicker

我需要为DateTimePicker的值添加秒。任何人都可以告诉我为什么在执行以下代码后值仍然保持不变?而且我想将DateTimePicker的显示值更改为其新值。这应该很容易。嗯,我不知道为什么。

感谢。

protected override void updateTime(uint seconds)
{
    this.dtPicAdmitDate.Value.AddSeconds(seconds);
}

1 个答案:

答案 0 :(得分:3)

AddSeconds()将返回一个新的DateTime对象。尝试:

this.dtPicAdmitDate.Value = this.dtPicAdmitDate.Value.AddSeconds(seconds);