OpenHarmony开发者论坛
标题:
如何让最大化按钮不可用?
[打印本页]
作者:
Summer
时间:
2023-9-7 16:17
标题:
如何让最大化按钮不可用?
【问题描述】
如何让PC应用中的最大化按钮不可用。
【运行环境】
硬件:rk3568; ROM: 3.2 Beta5 ; API 9
作者:
HmD
时间:
2023-9-8 09:42
可以通过supportWindowModes字段去指定是否显示。
●full_screen表示支持全屏显示
●split表示支持分屏显示
●floating表示支持窗口化显示
"abilities": [
{
"name": "EntryAbility",
"srcEntry": "./ets/entryability/EntryAbility.ts",
"description": "$string:EntryAbility_desc",
"icon": "$media:icon",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background",
"exported": true,
"supportWindowMode": ["split", "floating"],
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
]
}
]
复制代码
参考链接:
https://gitee.com/openharmony/do ... ager-abilityInfo.md
欢迎光临 OpenHarmony开发者论坛 (https://forums.openharmony.cn/)
Powered by Discuz! X3.5