GUI differences among different users

5 vues (au cours des 30 derniers jours)
Art
Art le 7 Déc 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?

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Déc 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 commentaires
Evan
Evan le 7 Déc 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 le 7 Déc 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.

Connectez-vous pour commenter.

Plus de réponses (2)

Image Analyst
Image Analyst le 7 Déc 2012
Perhaps install the same video adapter as you have.

Matt Fig
Matt Fig le 7 Déc 2012
Set the renderer of the GUI figure to painters or zbuffers and try again.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by