本文介绍了日历" TargetType与元素“日历"的类型不匹配的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下面的代码出了什么问题,它给出了"DatePicker"异常,TargetType与元素"Calendar"的类型不匹配.
what is wrong in the below code it gives the exception ''DatePicker'' TargetType does not match type of element ''Calendar''.
<Style x:Key="mydate" TargetType="{x:Type DatePicker}">
</Style>
<!--problem code-->
<DataTemplate x:Key="EditingDateTemplate">
<DatePicker SelectedDate="{Binding DOB}" CalendarStyle="{DynamicResource mydate}" />
</DataTemplate>
推荐答案
这篇关于日历" TargetType与元素“日历"的类型不匹配的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!