Is there a way to close ToastMessageShow after device back button is pressed or after exit App? I have several buttons, and every time a button is pressed a ToastMessageShow is displaying msg for each button pressed, however when pressed several buttons and exit App the ToastMessageShow is still displaying ToastMessageShow until completed.
Do you really need ToasMessages ?
If you want a message when pressing a Button you
could use a Label that is displayed with the Button_Down event
and hidden with the Button_Up event.
With this you can do something similar to the ToolTips in Windows.
The function in the Click event can be done either in the Down or in the Up event.