Hi,
Is it possible to remove the line in the SfMaskedEdit when te page appears?
When i click in de SfMaskedEdit (focus) and click outside (Focus off) the controle the line disappears.
Snippet of the source:
<inputLayouts:SfTextInputLayout
Grid.Row="0"
Hint="{i18n:Translate lengte}"
ContainerType="Outlined"
OutlineCornerRadius="8">
<maskededit:SfMaskedEdit
x:Name="Lengte"
Mask="######"
MaskType="Text"
HidePromptOnLeave="True"
TextColor="Green"
FontSize="14"
Keyboard="Numeric"
HorizontalTextAlignment="Start"
ValueMaskFormat="ExcludePromptAndLiterals"
ValueChanged="Lengte_OnValueChanged"
Value ="{Binding Lenght,Converter={StaticResource decimalToStringConverter}}">
</maskededit:SfMaskedEdit>
</inputLayouts:SfTextInputLayout>
Best Regards,
Thijs van Rijswijk