I am creating a simple calculator in MAUI as this is my first time using MAUI.
So, I have an Entry to display the entered numbers, operations and the answer. There are two ways to change the text in the Entry: The keyboard and the buttons (C#) given in the UI. I want to detect if the text in the Entry is changed by keyboard input or by using the UI buttons (C#).
I am using .NET 8.
I tried to use KeyPress event, but I don’t know where and how to use it, or does it even work in MAUI.