📄 f_helpmenu.asv
字号:
function f_helpmenu (tips,g_module)
%F_HELPMENU: Set up help menu item
%
% Usage: f_helpmenu (tips,about,g_module)
%
% Inputs:
% tips = string specifying name of file containing user tips
% g_module = string specifying name of GUI module
hm_3 = uimenu (gcf,'Label','Help');
cback = ['h_fig = gcf; set(h_fig,''Selected'',''off''); helpwin ' tips '; set(h_fig,''Selected'',''on'')'];
hm_33 = uimenu (hm_3,'Label','User tips','Callback',cback);
cback = ['h_fig = gcf; set(h_fig,''Selected'',''off''); helpwin ' g_module '; set(h_fig,''Selected'',''on'')'];
hm_33 = uimenu (hm_3,'Label',['About ' g_module],'Callback',cback,'Separator','on');
[y,vernum] = f_oldmat;
if vernum >= 7.0
set (hfig,'DockControl','off');
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -