需要你的帮助。
我的表单上有两个datetimepickers:dt1和dt2。
dt1用于选择日期。
dt2用于选择时间。
如何获得 DateTime dt ,其中Date组件来自dt1,而time组件来自dt2?
C#,。net 2.0
答案 0 :(得分:3)
您可以从dt1
的值中读取日期组件,从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