How do I get buttons in a panel to be automatically centered when the panel is resized using App Designer?

46 views (last 30 days)
I am using App Designer and am having a hard time getting some buttons to behave the way I want when I resize the app window. I have 'AutoResizeChildren' enabled so when I maximize the window the panel with buttons also resizes. However, when this happens the buttons seem to align relative to the left of the panel when I want them to align to the center of the panel.
I was thinking that I could just add a callback for when the window is resized but that callback is ignored if 'AutoResizeChildren' is enabled and I don't want to disable it becuase if mostly works the way I want (except for the buttons).
Any advice?

Answers (1)

Aghamarsh Varanasi
Aghamarsh Varanasi on 15 Mar 2021
Hi William,
This is a known limitation of the App Designer and the developers might consider it for a future release.
However there are a couple of work-arounds to achieve this functionality.
1. Force the buttons to resize so they remain centered, by doing one of the following:
a. Make the buttons wider, so they are left aligned with the labels, and right aligned with the edit fields, see App_a.mlapp that is attached.
b. Create a non-visible edit field behind the button, that is of the same size as the button. Note: you only need to do this for one of the buttons, not all. Since they are aligned, the other buttons will behave like the one that has the edit field behind it. See App_b.mlapp , and especially the component named "app.NonVisibleEditfield".
2. Create 2 non-visible edit fields to the left and right of one of the buttons. Note, this only needs to be one for one of the buttons, not all. See App_c.mlapp, components "app.NonVisible1" and "app.NonVisible2". This would make the buttons remain with the same size and they would align to the center of the panel.
All the apps that I have mentioned are included in the zip folder that I have attached to this answer. App.mlapp is the application that recreates the issue.
Hope this helps

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!