App components shift position

조회 수: 20 (최근 30일)
MathWorks Support Team
MathWorks Support Team 2022년 10월 27일
답변: MathWorks Support Team 2022년 11월 14일
I updated MATLAB from 2021b to 2022b, and a new issue has emerged. 
When I run the app with App Designer the position of all of the components in the Left Panel of the app are shifted. 
The components look correct in Design View, and the correct positions are listed for each component before the code runs. 

채택된 답변

MathWorks Support Team
MathWorks Support Team 2022년 10월 27일
WORKAROUND 1:
Use uigridlayout to place and resize the components, instead of relying on auto resize:
- In AppDesigner, open the app, and right click on the LeftPanel (in an empty space, not on a component), and select "Apply Grid Layout". This will insert a uigridlayout between the LeftPanel and the components.
- Adjust the grid configuration as needed.
- Repeat for the RightPanel.
WORKAROUND 2. (not as robust workaround 1 as the amount of pause is not deterministic).
Add the following at the beginning of the startupFcn:
app.LeftPanel.AutoResizeChildren = 'off';
app.RightPanel.AutoResizeChildren = 'off';
drawnow;
pause(2);
app.LeftPanel.AutoResizeChildren = 'on';
app.RightPanel.AutoResizeChildren = 'on';

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by