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; }