This commit is contained in:
FlorianDahn 2018-08-30 01:44:56 +02:00
commit f431a4afc2

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