How can I specify the way components resize automatically in App Designer?

54 visualizaciones (últimos 30 días)
I am developing a GUI in App Designer. I need it to be able to resize every component in a nice way for displaying on different screens. I try to make the most use of the automatic resizing of UIFigure, since hard-coding the resizing of each particular element would be just too much work.
However, instead of just changing the size ratio of each dimension of each element, App Designer sometimes tries to align certain elements to one side, or stretches the width of the element by the same amount of pixels which the window had been increased with. It looks bad.
I have been trying all the alignment functions of App Designer - aligning elements to each other, grid, no alignment, and occasionally by trial and error I manage to position my elements in such a way that the automatic resize would behave like I want it to. Still, it is bothersome, and it would be nice to know how exactly I can place the right dimension constraints on elements in the Design View, without hard-coding it.
For example: If I place a component using no alignment or the grid, will it keep the same ratio as its parent panel or uifigure? If I allign the right side of a button to the right side of an uiaxes, will the button stay aligned to that side without ever changing the size?
I attach a picture about the tiny and magnified version of my panel to illustrate my point.
  3 comentarios
Ajeya Gupta
Ajeya Gupta el 10 de Abr. de 2019
Were you able to resolve this? I am in a similar situation, where I have developed a tool using App Designer. In my start up function, i use the following lines of code to make sure the app adjusts its size based on screen resolution
screen_size = get(groot, 'Screensize');
ScreenWidth = screen_size(3);
ScreenHeight = screen_size(4);
%This is for the entire canvas (including all the buttons, radio buttons, graph etc.)
app.UIFigure.Position = [0 0 ScreenWidth ScreenHeight];
app.UIFigure.AutoResizeChildren = 'on';
Additionally, my 'AutoResizeChildren' tab under component browser is selected. Still when I move my app to a larger connected monitor, the resizing is just not perfectly done. As in, there are some radio buttons and state buttons that re-sizes, and there are some other buttons that do not resize. Moreover, certain symmetry at which I have adjusted my tabs on my laptop is not clearly reflected when this app is moved to a larger screen size monitor. Basically, the re-sizing is not really working well for me, and kind of things look pretty ugly.
Any help or tip on this will be greatly appreciated!
Thank you in advace,
Ajeya Gupta
Marc Youcef
Marc Youcef el 8 de Abr. de 2020
Even after 2020a, still experiencing what you are just sharing here above. Symmetry not kept during resize and making all that stuff look really ugly specially and complex interfaces... Have no clue how to make it understand that it needs to keep relative position while resizing ...

Iniciar sesión para comentar.

Respuestas (2)

J. Alex Lee
J. Alex Lee el 8 de Abr. de 2020
"uigridlayout" was introduced in 2018b, which may be helpful...It allows pretty sophisticated layouts, although it still seems buggy especially when you nest multiple uigridlayouts.
  2 comentarios
Marc Youcef
Marc Youcef el 10 de Abr. de 2020
This directly solved my issue. It is true that it is not easy to set in place for complex UIs but enables you great control ! Was not aware about it, thanks for sharing this.
J. Alex Lee
J. Alex Lee el 10 de Abr. de 2020
Sure thing! I wasn't sure it would be helpful since it's such a new feature and not everyone keeps matlab up to date.
Be sure to check out the "fit" keyword in the column widths and row heights; this is a neat feature introduced I think in R2019x, but it will make the grid as small as possible to still accoomodate whatever its holding. It's well suited for buttons and edit boxes, pop ups, etc.

Iniciar sesión para comentar.


Dovletgeldi Seyitliyev
Dovletgeldi Seyitliyev el 27 de Nov. de 2020
I solved by writing this code to my startupFcn
set(0,'units','pixels');
Pix_SS = get(0,'screensize');
k_vert=Pix_SS(4)/1080;
k_hor=Pix_SS(3)/1920;
%k_vert=0.75;
%k_hor=0.6;
uisize = app.UIFigure.Position;
screenWidth = uisize(3);
screenHeight = uisize(4);
left = uisize(1);
bottom = uisize(2);
width = screenWidth*k_hor;
height = screenHeight*k_vert;
k_font=(k_hor+k_vert)/2;
drawnow;
comp=app.UIFigure.Children;
app.UIFigure.Position = [left bottom width height];
assignin('base', 'pos', app.UIFigure.Position);
assignin('base', 'compp', app.UIFigure.Children);
for i=1:numel(comp)
app.UIFigure.Children(i).Position(3)=comp(i).Position(3)*k_hor;
app.UIFigure.Children(i).Position(4)=comp(i).Position(4)*k_vert;
app.UIFigure.Children(i).Position(1)=comp(i).Position(1)*k_hor;
app.UIFigure.Children(i).Position(2)=comp(i).Position(2)*k_vert;
try
a{i} = comp(i).FontSize;
catch
warning('This object does not have font option. Assigning a value of 0.');
a{i} = 0;
end
if a{i}~=0
app.UIFigure.Children(i).FontSize=comp(i).FontSize*k_font;
end
end

Categorías

Más información sobre Interactive Control and Callbacks 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!

Translated by