5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 00:10:47 +08:00

Update application-development.mdx

This commit is contained in:
Lea Anthony 2022-04-09 07:21:08 +10:00 committed by GitHub
parent c3a98b058e
commit 3b85c75359
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,11 +113,11 @@ func main() {
This will bind all public methods in our `App` struct (it will never bind the startup and shutdown methods).
More information on Binding can be found [here](../howdoesitwork#method-binding).
More information on Binding can be found [here](../../howdoesitwork#method-binding).
## Application Menu
Wails supports adding a menu to your application. This is done by passing a [Menu](../reference/menus#menu) struct
Wails supports adding a menu to your application. This is done by passing a [Menu](../../reference/menus#menu) struct
to application config. It's common to use a method that returns a Menu, and even more common for that to be a method on
the `App` struct used for the lifecycle hooks.