📄 nonmodalfigs.m
字号:
function nonmodalfigs% nonmodalfigs - sets all figures to non-modal mode%% FORMAT: nonmodalfigs;%% No input/output fields.% Version: v0.7b% Build: 7090119% Date: Sep-01 2007, 7:29 PM CEST% Author: Jochen Weber, Brain Innovation, B.V., Maastricht, NL% URL / Info: http://wiki.brainvoyager.com/BVQXtools% show all figures!try ssh = get(0, 'ShowHiddenHandles'); set(0, 'ShowHiddenHandles', 'on');catch ssh = false;end% get figures and set window style to normaltry f = findobj('Type', 'figure'); set(f, 'WindowStyle', 'normal');catch % do nothingend% reset ShowHiddenHandles settingtry set(0, 'ShowHiddenHandles', ssh);catch % do nothingend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -