GUI screen resolution auto-resize
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Eric Gilkey
el 28 de Jun. de 2016
Comentada: Trinh Nam
el 18 de Feb. de 2020
Is there a way to have a GUI in guide auto-adjust to fit current screen resolution, and/or can I hard-set the resolution of the interface at a specific value?
1 comentario
Trinh Nam
el 18 de Feb. de 2020
You can Right Click on Guide (Open Fig file), Left Click to "GUI Options", Choose "Proportional" of Resize behavior
Respuesta aceptada
Walter Roberson
el 28 de Jun. de 2016
You can set the figure Units property to be Normalized, and set the Position property to be [0 0 1 1] if you want full screen. Or, if more appropriate, you can set the Units to Pixels or to 'cm' and use the appropriate values for Position.
7 comentarios
Walter Roberson
el 29 de Jun. de 2016
True full screen requires operating-system specific calls. Using position [0 0 1 1] covers all of the area except title bars and docks and trays -- all of the area that the window manager normally gives programs. To go beyond that you need one of the utilities like Image Analyst posted or such as https://www.mathworks.com/matlabcentral/fileexchange/11112-fullscreen
I have to agree with Adam that just scaling everything usually ends up looking bad. It is also problematic when you get to screens with different aspect ratios.
What I ended up doing was writing a series of utilities to do programmatic layout.
(Unfortunately, I cannot release them as-is, for copyright reasons, and I never got around to re-writing them.)
Más respuestas (1)
Image Analyst
el 29 de Jun. de 2016
You have to set all the 'units' properties of all the controls to 'normalized'. To do this, type control-a to select everything in the GUI, then set the units property to 'normalized'. This may/will not set the units of controls inside a groupbox panel so you may have to set those separately.
Then, in the OpeningFcn() of your GUI, call the attached MaximizeFigureWindow (if you're using Microsoft Windows) to maximize the window. This truly maximizes it, unlike setting the position property of the GUI. Setting the Position property always seems to leave the window slightly misaligned anyway - bottom left is never at 0,0 like it should be.
2 comentarios
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!