我有一些 Windows 框架演示应用程序。
后台工作人员完成的所有操作。我正在尝试选择日期。
DateTime StartDate = DateTime.MinValue;
StartOfferDatePicker.Dispatcher.Invoke(
new Action(delegate()
{
StartDate = StartOfferDatePicker.GetValue(DatePicker.SelectedDateProperty);
}
));
我得到错误Can not imlicitly convert an 'object' to System.DateTime
。