Consistent GUI screen sizing on laptop and monitor

28 visualizzazioni (ultimi 30 giorni)
Hi, so I have a GUI that I mainly work on at the internship I have, where I use a 1920x1080 resolution monitor. I verified that Matlab was using this same resolution by doing the get(0,'screensize') command. However, I went to work on it at home on my laptop, which is also 1920x1080 resolution, and the layout for the GUI is all messed up. Furthemore, when I did get(0,'screensize'), it says the resolution is 1280x720 even though I'm positive my laptop's screen is 1920x1080 resolution. How do I fix this so that my GUI works on both my laptop and the monitor I work on? Is there some command I can do on my laptop where I can change the Matlab resolution to 1920x1080? Does it have something to do with the fact that my laptops screen is physically smaller than the monitor screen (13'' vs roughly 24'')?
  8 Commenti
Mason Dyess
Mason Dyess il 20 Ago 2019
@Rik Display scaling was exactly the issue, mine was set to 150% and when I changed it back to 100%, it worked. Thanks for the helpful response! One more thing though, so when I disable display scaling unfortunately it causes my screen to look pretty zoomed out- having the display scaling is ideal. With this in mind, is there any easy way to scale my gui to work when the display is scaled?
Rik
Rik il 20 Ago 2019
I don't know how you could solve this, but I suggest you contact Mathworks support to see if they consider this a bug.

Accedi per commentare.

Risposta accettata

Chidvi Modala
Chidvi Modala il 14 Ago 2019
You can set all the 'units' properties of all the controls to 'normalized'. You can also set the Position property to [0 0 1 1], if you want full screen.
  6 Commenti
Rik
Rik il 14 Ago 2019
@Adam, actually, that misses a point. That presuposes that all sizes are correct, which is apparently not the case. So Mason would need to run this code on a computer where the sizes turn out correct, and then use the result to adapt the code to generate the GUI with normalized units.
(although to be fair, it isn't entirely clear to me why the layout would break, instead of everything just being scaled down and all proportions staying correct)
Mason Dyess
Mason Dyess il 20 Ago 2019
Thanks guys, switching to normalized units was pretty helpful for auto-resizing. However, the major issue that was causing me problems was display scaling, so thanks to @Rik for suggesting that as the potential cause.

Accedi per commentare.

Più risposte (1)

Chidvi Modala
Chidvi Modala il 13 Ago 2019
I am assuming that you are using GUIDE to build your GUI.
  1 Commento
Mason Dyess
Mason Dyess il 14 Ago 2019
Hi, I actually didn't use GUIDE at all to build my GUI. I instead programmatically built it using commands like uicontrol.

Accedi per commentare.

Categorie

Scopri di più su Environment and Settings in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by