Hello,
When you use this custom entry, you need to set x:name for your previous EntryMoveNextControl
, then set NextEntry="{x:Reference yourPreviousEntry}" for your next
EntryMoveNextControl`.
For example, if you have two <EntryMoveNextControl>
contros in your xaml layout, the first one set the x:Name that called x:Name="myFirstEntry"
, you can set NextEntry="{x:Reference myFirstEntry}"
for your second <EntryMoveNextControl>
like following code.
<ContentPage
...
xmlns:local="clr-namespace:yourproject"
...
>
<local:EntryMoveNextControl x:Name="myFirstEntry" >
<local:EntryMoveNextControl.Effects>
<local:EntryMoveNextEffect></local:EntryMoveNextEffect>
</local:EntryMoveNextControl.Effects>
</local:EntryMoveNextControl>
<local:EntryMoveNextControl x:Name="myentry" NextEntry="{x:Reference myFirstEntry}">
<local:EntryMoveNextControl.Effects>
<local:EntryMoveNextEffect></local:EntryMoveNextEffect>
</local:EntryMoveNextControl.Effects>
</local:EntryMoveNextControl>
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.