GUI differences among different users

8 visualizaciones (últimos 30 días)
Art
Art el 7 de Dic. de 2012
I created a gui using GUIDE from MATLAB 2009a and got it looking how I want it. Multiple people have tried to use it as well, all from 2009a (from different computers). of the 10 or so people I have talked with, maybe 5 or 6 have the problem where the gui is showing up differently. This means that buttons and other items on the gui are misplaced or misaligned, although the functionality is still there. What can I do to make the gui appear the same for all users?

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Dic. de 2012
How are you positioning elements? If you have some elements positioned in absolute locations, but other elements positioned in relative locations, you can get a mess when you display on a screen with a different resolution.
Also if you are positioning all elements relative to the figure size, but you use a fixed font size (instead of changing the font to suit the figure size) then items can look messy.
  3 comentarios
Evan
Evan el 7 de Dic. de 2012
Using a consistent value for the "units" property has seemed to work best for me. I generally use either pixels or (if I set the figure to resizeable) normalized. Not sure which is considered optimal.
Walter Roberson
Walter Roberson el 7 de Dic. de 2012
Neither Normalized nor fixed positions will work nicely in all (reasonable) cases. That's why I ended up writing my own layout routines that figured out how big elements had to be and positioned other elements relative to them. Unfortunately I do not own the rights to that code, so I cannot share it in its present form.

Iniciar sesión para comentar.

Más respuestas (2)

Image Analyst
Image Analyst el 7 de Dic. de 2012
Perhaps install the same video adapter as you have.

Matt Fig
Matt Fig el 7 de Dic. de 2012
Set the renderer of the GUI figure to painters or zbuffers and try again.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by