This is driving me crazy. I've seen numerous threads on this and none of the solutions seem to work for hiding the week number..
When I try to bring up the window shown below the dropdown calendar does not display at all. If I remove the InputMode="DatePicker" I can drop down the calendar but all I get is a list of times! No dates. What am I missing. Seems to me this having the week numbers not displaying should be the default. At the very least it should be an easily settable property instead of having to go through all these machinations.
Sorry, but this is very frustrating.
Ed
<Window x:Class="Calms2.Views.Test1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:local="clr-namespace:Calms2"
Title="MainWindow" Height="350" Width="525" HorizontalAlignment="Left" >
<Window.Resources>
<Style x:Key="calendarStyle" TargetType="telerik:RadCalendar">
<Setter Property="AreWeekNumbersVisible" Value="False" />
</Style>
</Window.Resources>
<StackPanel>
<telerik:RadDateTimePicker Width="500" HorizontalAlignment="Left"
CalendarStyle="{StaticResource calendarStyle}"
InputMode="DatePicker"
VerticalAlignment="Center"/>
</StackPanel>
</Window>