closecommonwindow.m
来自「Yaakov Bar-Shalom, X.-Rong Li,Thiagaling」· M 代码 · 共 22 行
M
22 行
%%% DynaEst 3.032 10/22/2000
% Copyright (c) 2000 Yaakov Bar-Shalom
%
% CloseCommonWindow, close CommonWindow 3.0 application.
DisableProjectMenu ;
ButtonName = questdlg('Do you want to save a current project file?',...
'Close Project');
switch ButtonName
case 'Yes',
SaveProject;
case 'Cancel'
return;
end
if exist('h_CommonWindow')
delete(h_CommonWindow) ;
clear h_CommonWindow ;
end
clear ButtonName ;
set(h_MainWindow,'name','DynaEst 3.0: Untitled.prj');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?