I am using datepicker control from wpf toolkit. I need to center align the content in datepicker control. How can I achieve this?
Tried VerticalContentAlignment="Center". It didn't work.
<Style TargetType="DatePickerTextBox">
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Padding" Value="2" />
</Style>