Adding a push button to a figure without using GUIDE
이전 댓글 표시
Is there a reason why I'm not seeing the pushbutton on the figure? Thanks Jason
hFig=figure('Position',[200 200 1600 600]);
movegui(hFig,'center')
%Add pushbutton to view data
ButtonH=uicontrol('Parent',hFig,'Style','pushbutton','String','View Data','Position',[0.0 0.5 0.4 0.2],'Units','normalized','Visible','on');
채택된 답변
추가 답변 (1개)
Image Analyst
2014년 12월 5일
0 개 추천
If you really want to take on the burdensome task of building a complete GUI from scratch using bunches of uicontrol() calls, see Matt Fig's File Exchange http://www.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples
댓글 수: 3
Jason
2014년 12월 5일
Image Analyst
2014년 12월 5일
Nonetheless, there's some good stuff there. It's still worth taking a look at, at least I think so.
Jason
2014년 12월 5일
카테고리
도움말 센터 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!