Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
605
AutoFillDate
posted

Hi

I tried to set the AutoFillDate Property for a xamDateTimeEditor in my XamDataGrid.

I tried like this:

<Window.Resources>

        <Style TargetType="{x:Type igDE:XamDateTimeEditor}">
            <Setter Property="AutoFillDate" Value="Year" />
        </Style>

</Window.Resources>

But I get : "Invalid PropertyDescriptor Value"

what am I doing wrong?

Parents
  • 54937
    Offline posted

    It looks like the problem is that this property was defined as a CLR property only and not as a DependencyProperty. I have submitted an issue for this and will get a case created for you so you can be notified when this is fixed. In the interim you will need to set this locally on the element instance (in xaml or code).

Reply Children