我的应用程序在Windows Phone 8.1上,它就像一个提醒,为此我需要检索用户设置的日期和时间,并在指定的时间和日期发出通知,我的代码是:
// Get the begin time for the notification by combining the DatePicker
// value and the TimePicker value.
DateTime date = (DateTime)FromDatePicker.Value;
DateTime time = (DateTime)Reminder1.Value;
DateTime beginTime = date + time.TimeOfDay;
但问题是我的打字错误.Value如:
错误1'Windows.UI.Xaml.Controls.DatePicker'不包含'Value'的定义,并且没有扩展方法'Value'接受类型为'Windows.UI.Xaml.Controls.DatePicker'的第一个参数'找到(你错过了使用指令或汇编引用吗?)
我不知道如何用'.Value'代替通知的确切值?
答案 0 :(得分:0)
试试这个:
DateTime SelectedDate = MyDatePicker.Date.Date;
答案 1 :(得分:0)
您可以从Datepicker中获取所选的值,如下所示:
DateTime date = FromDatePicker.Date