Click here to Skip to main content
15,904,024 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any way to disable the users from manually typing in date into DatePicker field
but it shuould be able to pick a date by clicking the picker button

Thanks,

What I have tried:

<DatePicker x:Name="DeliveryDate"  
           VerticalAlignment="Center" SelectedDateFormat="Long"
           SelectedDate="{Binding DeliveryDate, Mode=TwoWay,  UpdateSourceTrigger=PropertyChanged }" />
<pre lang="xml">
Posted
Updated 28-Nov-17 18:49pm
v2

1 solution

<DatePicker>
   <DatePicker.Resources>
      <Style TargetType="DatePickerTextBox">
         <Setter Property="IsReadOnly" Value="True"/>
      </Style>
   </DatePicker.Resources>
</DatePicker>
 
Share this answer
 
Comments
ThabetMicrosoft 28-Nov-17 6:24am    
Thanks a lot,

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900