The problem is that I can't change Time or Date at all in both controls by using mouse wheel, arrow up/down keys or even that small up/down arrows in the right of textbox. Both controls are from Extended WPF Toolkit (https://wpftoolkit.codeplex.com/)
The only working solution is to use DateTimePicker, press calendar button, and there everything starts working, but not on the textbox itself. I've just tried it in totally empty project and the problem persisted.
What I am missing? How to make both of these controls work as it would be WinForms DateTimePicker?
This is my xaml:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" x:Class="WPFForm.MainWindow"
Title="MainWindow" Height="350" Width="525">
<Grid>
<xctk:DateTimePicker HorizontalAlignment="Left" Margin="162,167,0,0" VerticalAlignment="Top" Height="30" Width="271"/>
</Grid>
</Window>
Also, there isn't any difference whether I'm binding the Value property or not.