DateTimeEditBox and Calender properties

Editors for WPF Forum

Posted 13 years ago by Arthur Damen
Version: 11.1.0542
Avatar
I want to show the weeks in the DateTimeEditBox popup.
How can I set this property?

Comments (2)

Posted 13 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Hi Arthur,

You can use the DateTimeEditBox.MonthCalendarStyle to use a Style to set the MonthCalendar.IsWeekNumberColumnVisible property. Something like:
<editors:DateTimeEditBox ...>
    <editors:DateTimeEditBox.MonthCalendarStyle>
        <Style TargetType="editors:MonthCalendar">
            <Setter Property="IsWeekNumberColumnVisible" Value="True" />
        </Style>
    </editors:DateTimeEditBox.MonthCalendarStyle>
</editors:DateTimeEditBox>


Actipro Software Support

Posted 13 years ago by Arthur Damen
Avatar
thanks for your help.
The latest build of this product (v24.1.2) was released 11 days ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.