Windows 8.1 用の新しい dateTimePicker を使用しようとしています。
<DatePicker HorizontalAlignment="Left" Margin="401,245,0,0" Grid.Row="1"
VerticalAlignment="Top" Width="352" Date="{Binding personSingle.personDOB,Mode=TwoWay}"/>
日付を変更するたびに、personDOB の値を調べたときに選択した値が得られません。personDOB は DateTimeOffset 型です
選択した値を取得するにはどうすればよいですか?
アップデート:
<DatePicker x:Name="dtPick" HorizontalAlignment="Left" Margin="401,245,0,0" Grid.Row="1"
VerticalAlignment="Top" Width="352" DataContext="{Binding personSingle}"
Date="{Binding personSingle.personDOB.Date,Mode=TwoWay}"/>