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
800
bind XamNumericEditor mask to const
posted

For the SomeField below, I have defined in my code a public const for the min (e.g. 45) and max (e.g. 34000).

Is there some way I can bind the Mask Value to those constants instead of having numbers hardcoded in the xaml (e.g. 45-34000)..

 

 <igDP:Field Name="SomeField" DataType="{x:Type sys:UInt16}"  Label="SomeField">
    <igDP:Field.Settings>
        <igDP:FieldSettings EditAsType="{x:Type sys:UInt16}">
            <igDP:FieldSettings.EditorStyle>
                <Style TargetType="{x:Type igEditors:XamNumericEditor}" >
                    <Setter Property="Mask" Value="{}{number:45-34000}" />
                </Style>
            </igDP:FieldSettings.EditorStyle>
        </igDP:FieldSettings>
    </igDP:Field.Settings>
</igDP:Field>

Parents Reply Children
No Data