It's posible to make figure always maximized and block minimized option?
조회 수: 8 (최근 30일)
이전 댓글 표시
I'm trying to make UIFigure in App Designer always maximized and block the minimized/maximized button in Windows and Linux
Thank you
댓글 수: 0
답변 (2개)
Stijn Haenen
2020년 2월 8일
You can do this with position function of a handle:
h=figure();
h.Position=[1,41,1536,749] % depends on your screen size, 1 41 is the pixel left just above my taskbar, width and heigth are 1536 and 749
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!