需要一些帮助。

我的表单上有两个datetimepickers:dt1和dt2。

dt1用于选择日期。

dt2用于挑选时间。

如何获取DateTime dt,其中Date组件来自dt1,time组件来自dt2?

C#、. net 2.0

最佳答案

您可以从dt1的值读取Date组件,从dt2的值读取时间组件,并将它们与Add方法组合,如下所示:

DateTime theDate = dt1.Value.Date;
TimeSpan theTime = dt2.Value.TimeOfDay;

DateTime dt = theDate.Add(theTime);

// dt now contains date from dt1 and time from dt2

10-04 18:15