How to change the state to 'busy' in the left corner when running an app?
조회 수: 2 (최근 30일)
이전 댓글 표시
How to change the state to 'busy' in the left corner when running an app? so I can sure that the app is running.
댓글 수: 0
답변 (1개)
Shivangi Gupta
2021년 8월 24일
You can modify the state message with the “statusbar” utility
...
statusbar(0, 'Busy...'); %# Set the status message
test; %# Run your function/script
statusbar(0, ''); %# Clear the status message
...
You can refer to the following link for more information related to “statusbar”.
https://in.mathworks.com/matlabcentral/fileexchange/14773-statusbar
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!