Update README.md

This commit is contained in:
Florian Dahn 2018-05-20 04:35:44 +02:00 committed by GitHub
parent 7142c8e59f
commit d86bef4c8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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