Hi,
Thanks for the suggestion.
I tried to replace Entry with SfMaskedEdit like this :
<sfinputlayout:SfTextInputLayout
Grid.Row="2"
Margin="5"
ContainerType="Outlined"
EnablePasswordVisibilityToggle="False"
Hint="Mot de passe"
OutlineCornerRadius="8">
<sfinputlayout:SfTextInputLayout.HintLabelStyle>
<sfinputlayout:LabelStyle
FontFamily="{StaticResource Font-RobotoCondensed-Regular}"
FontSize="18" />
</sfinputlayout:SfTextInputLayout.HintLabelStyle>
<sfmaskededit:SfMaskedEdit
x:Name="PasswordEntry"
Completed="PasswordEntry_Completed"
EnablePasswordDelay="False"
FontFamily="{StaticResource Font-RobotoCondensed-Regular}"
FontSize="18"
Mask="[a-z0-9A-Z@_#*()-/$!]*"
MaskType="RegEx"
PasswordChar="*"
ReturnType="Done"
Value="{Binding Password}" />
</sfinputlayout:SfTextInputLayout>
It's ok when I press my button OK, I have Value binded in my Password property. But with the Completed event, Value is null.