Azzera filtri
Azzera filtri

Change the size and position on the screen of interative menu

18 visualizzazioni (ultimi 30 giorni)
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 Commenti
Adam Danz
Adam Danz il 10 Gen 2023
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 il 11 Gen 2023
Thank u both! I will use questdlg, it´s a good function to use! Thanks thanks

Accedi per commentare.

Risposta accettata

Voss
Voss il 8 Gen 2023
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 Commento
Madalena Francisco
Madalena Francisco il 9 Gen 2023
Modificato: Madalena Francisco il 9 Gen 2023
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?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Dialog Boxes in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by