A Microsoft framework for building cross-platform mobile apps using .NET and C# with native performance and user interfaces.
Hello,
When the text in the Entry changes, the Email_TextChanged method executes. Here is InputView.TextChanged Event
You can add TextChanged="Email_TextChanged" for your <Entry> like following code. Then you click the Button, you can get the text without hitting enter/return/checkmark,
<Entry x:Name="Emailaddress"
Placeholder="emailaddress"
PlaceholderColor="DimGray"
ClearButtonVisibility="WhileEditing"
TextChanged="Email_TextChanged"
Keyboard="Email"
Completed="Email_Completed"
/>
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.