📄 warnwin.m
字号:
function warnwin(message1,message2)
Warning_f=figure('Units','Normalized',...
'Numbertitle','off',...
'Position',[.265 .4 .3 .2 ],...
'Color','white',...
'Name','Warning');
text=uicontrol('Style','text',...
'Units','normalized',...
'Position',[0.1 0.61 0.8 0.15],...
'BackGroundColor','white',...
'String',message1);
text=uicontrol('Style','text',...
'Units','normalized',...
'Position',[0.1 0.5 0.8 0.15],...
'BackGroundColor','white',...
'String',message2);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -