📄 menu_item.m
字号:
%MENU_ITEM Generate a menu item.
%
% F_M = MENU_ITEM(PARENT,LABEL,SEPARATOR,ENABLE,BGCOLOR,CALLBACK) creates
% a menu item with the given parameters and returns its handle.
% James Bordner and Faisal Saied
% Department of Computer Science
% University of Illinois at Urbana-Champaign
% 10 April 1995
% Modified for Matlab Version 6 Compatability
% Ryan McKenzie
% University of Kentucky Center for Computational Sciences
% April 2004
%
% Removed depricated menu item option "BackgroundColor"
function f_m=menu_item(parent,label,separator,enable,bgcolor,callback)
f_m = uimenu(parent,...
'Label',label,...
'Separator', separator,...
'Enable',enable,...
'Callback', callback);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -