DatePicker.SelectedDate not changing when Text is input

前端 未结 5 755
无人共我
无人共我 2020-12-16 14:23

When my users select a date via the Calander control within the DatePicker, the value gets correctly bound to the underlying object. BUT, if the user types the date within t

相关标签:
5条回答
  • 2020-12-16 15:09

    You can use a converter for parsing your typed text to a valid datetime

    Sample

     public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            string strValue = System.Convert.ToString(value);
            DateTime resultDateTime;
            if (DateTime.TryParse(strValue, out resultDateTime))
            {
                return resultDateTime;
            }
            return value;
    
        }
    

    Xaml

         <Controls:DatePicker 
         Text="{Binding OrderDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
         SelectedDate="{Binding RelativeSource={RelativeSource Self},Path=Text,
         Converter={StaticResource DateConverter}}">
    
    0 讨论(0)
  • 2020-12-16 15:11

    I found a easier solution where I don't need the DateConverter.

    I only bound to the Text Property and use TargetNullValue=''.

    <DatePicker x:Name = "dpDisbursementDate" 
                Text = "{Binding NameOfMyProperty, Mode=TwoWay,    
                UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True, 
                TargetNullValue=''}"/>
    
    0 讨论(0)
  • 2020-12-16 15:16

    This is probably a bit late, but I've been stuck on this for a while now.

    If you have another WPF element you can change focus to that at the beginning of your button press event, this will make the datepicker process any text entered in it's textbox. I've only tried this with a combobox but it seems to work and it allows you to still have custom formatting on your dates (ie 26/04/2016 rather than 04/26/2016). I assume you would be able to use an invisible element as well if you don't have anything to change focus to.

        private void btnInbound_Complete_Click(object sender, RoutedEventArgs e)
        {
            if (Validation())
            {
                comboInbound_Result.Focus();//THIS IS SO THAT ANY MANUAL DATEPICKER ENTRY IS ACCEPTED BEFORE THE REST OF THE BUTTON CODE IS RUN
                SQLinbound_CompleteItem();
                ClearAll();
            }
        }
    
    0 讨论(0)
  • 2020-12-16 15:18

    The only solution that I could find is to disable entering of the date in the DatePicker by setting Focusable="False" and only allowing selection from the calendar. This way we can at least make sure that we get the correct date.

    0 讨论(0)
  • 2020-12-16 15:20

    Here a simple solution, that helped me even with the european/german date format "dd.MM.yyyy".

    Add to your xaml root element

    xml:lang="de-AT"
    

    and the datepicker looks like this:

    <DatePicker SelectedDate="{Binding PropertyName, StringFormat=dd.MM.yyyy}" Name="datePicker" />
    

    hope it works for you!

    0 讨论(0)
提交回复
热议问题