Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个用于数据分析的 matlab GUI 界面。我有一个轴对象,我想添加plot图中可用的相同菜单。
plot
我知道您可以构建自己的菜单条目,但我只需要“标准”条目,即File、Edit、View、Insert等。
只有工具栏是不够的!
利用:
set(hf, 'MenuBar','figure')
如果hf是您的 GUI 图的句柄,请尝试:
hf
set(hf, 'ToolBar', 'auto')
或者
set(hf, 'ToolBar', 'figure')