Change the size and position on the screen of interative menu

조회 수: 22 (최근 30일)
Madalena Francisco
Madalena Francisco 2023년 1월 6일
댓글: Madalena Francisco 2023년 1월 11일
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
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.
Madalena Francisco
Madalena Francisco 2023년 1월 11일
Thank u both! I will use questdlg, it´s a good function to use! Thanks thanks

댓글을 달려면 로그인하십시오.

채택된 답변

Voss
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]);
  댓글 수: 1
Madalena Francisco
Madalena Francisco 2023년 1월 9일
편집: Madalena Francisco 2023년 1월 9일
Thank u for your answer!! It may help to change the position on that format!
But in the format that i´m using i want to be able to change the size of menu too, it´s that possible?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dialog Boxes에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by