📄 seagrid_helpdlg.m
字号:
function handle = seagrid_helpdlg(helpstring, dlgname, color)% seagrid_helpdlg -- "helpdlg" + background color.% seagrid_helpdlg(helpstring, dlgname, color) calls "helpdlg",% then adjusts the background to the given color. % Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.% All Rights Reserved.% Disclosure without explicit written consent from the% copyright owner does not constitute publication. % Version of 24-Aug-1999 14:57:37.% Updated 24-Aug-1999 14:57:37.if nargin < 1 help(mfilename) h = seagrid_helpdlg(help(mfilename)); if nargout > 0, handle = h; end returnendif nargin < 2, dlgname = 'SeaGrid Help'; endif nargin < 3, color = [1 1 1]; endh = helpdlg(helpstring, dlgname);set(h, 'Color', color)t = findobj(h, 'Type', 'uicontrol');set(t, 'BackgroundColor', color)if nargout > 0, handle = h; end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -