![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1203503/image.png)
How to resize panel in app Designer?
조회 수: 26 (최근 30일)
이전 댓글 표시
Hi all
In 2019b, I could resize 2 panels by using slider and Gridlayout. Of course, I didn't use auto-reflow because there are many other elements which were arranged in app. You can see in attachment file.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1201203/image.png)
I knew that slider has only 1 pointer. So, I am wordering how to resize 3 panels as following picture ???
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1201208/image.png)
Do anyone have idea, please help me.
Thank you so much.
댓글 수: 0
답변 (1개)
Eric Delgado
2022년 11월 22일
Unfortunately, Matlab still doesn't have a good approach to dealing with this issue. Maybe you can use a toolbar with predefined options. See app attached.
function ImageClicked(app, event)
switch event.Source
case app.Image0; app.GridLayout.ColumnWidth(1:2) = {'1x','1x'};
case app.Image1; app.GridLayout.ColumnWidth(1:2) = {'1x',0};
case app.Image2; app.GridLayout.ColumnWidth(1:2) = {0,'1x'};
end
end
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1203503/image.png)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!