GUI differences among different users

3 次查看(过去 30 天)
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?

采纳的回答

Walter Roberson
Walter Roberson 2012-12-7
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 个评论
Evan
Evan 2012-12-7
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 2012-12-7
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.

请先登录,再进行评论。

更多回答(2 个)

Image Analyst
Image Analyst 2012-12-7
Perhaps install the same video adapter as you have.

Matt Fig
Matt Fig 2012-12-7
Set the renderer of the GUI figure to painters or zbuffers and try again.

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by