seagrid_helpdlg.m
来自「一些制作正交曲线网格的matlab源程序」· M 代码 · 共 31 行
M
31 行
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 + =
减小字号Ctrl + -
显示快捷键?