From d86bef4c8e0bcaaed11876990897774e1f3d88af Mon Sep 17 00:00:00 2001 From: Florian Dahn Date: Sun, 20 May 2018 04:35:44 +0200 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6433222..8690c2b 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,8 @@ public class ButtonTestForm : AutoCleanForm if (call == null) return; + message.Handled = true; + switch (call.Value) { case "button1": @@ -212,6 +214,12 @@ public class ButtonTestForm : AutoCleanForm await this.NavigateTo(st); + break; + + default: + + message.Handled = false; + break; }