Change the size and position on the screen of interative menu
조회 수: 22 (최근 30일)
이전 댓글 표시
I want so change the size of a interative menu and change the position on the screen, on Matlab 2022?
Example:
choice=menu('1','2')
When I run this, the size menu it´s too small, and appears always on the same position, I want to be able to increase the size and put the menu wherever I want.
Thanks for the help
댓글 수: 7
Adam Danz
2023년 1월 10일
I see, you're using the old menu function. You could use questdlg as Voss mentioned or uiconfirm. You won't be able to specify the location or size of these dialogs but their default positions will be a lot better than menu.
If you want to specify the position and size you'll need to create a custom dialog or use a dialog that isn't modal.
채택된 답변
Voss
2023년 1월 8일
menu does not support setting the position of the window. Here is a modified version, my_menu (attached), which does. (It's based on the R2016b version of menu.)
Call my_menu the same way you call menu, or append optional 'Position',pos arguments at the end to set the position. pos is a 1-by-4 vector of the position ([x y width height]) in pixels.
Examples:
my_menu('Choose',1,2,3);
my_menu('Choose',1,2,3,'Position',[500 500 300 400]);
my_menu('Choose',{1,2,3});
my_menu('Choose',{1,2,3},'Position',[500 500 300 400]);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dialog Boxes에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!