mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 14:22:12 +08:00
29 lines
563 B
Plaintext
29 lines
563 B
Plaintext
---
|
|
title: 菜单
|
|
sidebar_position: 6
|
|
---
|
|
|
|
# 菜单
|
|
|
|
## 概述
|
|
|
|
这些方法与应用程序菜单相关。
|
|
|
|
:::info Javascript
|
|
|
|
JS 运行时当前不支持菜单。
|
|
|
|
:::
|
|
|
|
### 设置应用程序菜单
|
|
|
|
Go 方法签名: `MenuSetApplicationMenu(ctx context.Context, menu *menu.Menu)`
|
|
|
|
将应用程序菜单设置为给定的[应用菜单](../../reference/menus)。
|
|
|
|
### 更新应用程序菜单
|
|
|
|
Go 方法签名: `MenuUpdateApplicationMenu(ctx context.Context)`
|
|
|
|
更新应用程序菜单,选取对传递给`MenuSetApplicationMenu`的菜单所做的任何更改。
|