Update README.md

This commit is contained in:
Florian Dahn 2018-05-20 00:00:05 +02:00 committed by GitHub
parent a1b1346430
commit 5be0e65d3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,6 +82,16 @@ For instance send a message after loading a specific form:
await this.Device.Send("Hello world!");
```
Or you want to goto a different form?
Go ahead, create it, initialize it and navigate to it:
```
var tf = new TestForm();
await tf.Init();
await this.NavigateTo(tf);
```
---