Bug explanation
New Styles for the version 5.3.0 (compared to 5.2.1) contains the following line:
<Setter Property="AutomationProperties.Name" Value="{Binding Path=(wpf:HintAssist.Hint), RelativeSource={RelativeSource Self}, Converter={x:Static convertersInternal:AutomationPropertiesNameConverter.Instance}}" />
which cause the following XAML Binding error:
Error 4 DatePicker.(AutomationProperties.Name) Value 'null' cannot be assigned to property DatePicker.Name (type String).
In my opinion, the converter returns the wrong value type. I temporally fixed this problem while adding the following line to my Style definition:
<Setter Property="AutomationProperties.Name" Value=""/>
Version
5.3.0