📄 cbutt.m
字号:
function h = cbutt(x,y)%> This is a standard green 'continue' button of given %> length = .15 and height = .05.%> Call: cbutt(x,y)%> Input: x, y = position of lower left corner%> The callback is 'uiresume'.h=uicontrol('Style','pushbutton','Units','normalized',... 'Position',[x,y,.15, .05],'String','CONTINUE',... 'BackGroundColor',[.0 .7 .0],'ForeGroundColor','r',... 'Fontsize',12,'Callback','uiresume'); uiwait;%>%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -