Controling Tabs in App Designer

조회 수: 34 (최근 30일)
Aurélie B
Aurélie B 2021년 4월 10일
댓글: Mario Malic 2021년 4월 11일
Hi!
I am currently creating an app with AppDesigner and I am struggling with a problem I can't solve. Here is the situation : I created 2 different tabs in a panel, and depending on the tab I am currently on, I'd like to give a button differents actions to do.
My problem is : I don't know how to implemant the fact that I am in the tab1 or the tab2, and thus, the button doesn't work the way I want.
Thank you for helping!

채택된 답변

Mario Malic
Mario Malic 2021년 4월 11일
Hello,
Tabs are children of the TabGroup component. The latter component has property called SelectedTab which will be helpful.
  댓글 수: 4
Aurélie B
Aurélie B 2021년 4월 11일
Thank you so much, it works !
Mario Malic
Mario Malic 2021년 4월 11일
By the way, you don't need to create a property nor the callback to use in your calculations, when app gets more and more complex, debugging can be problematic.
It is better to reference the components directly in the calculations.
function calculate(app)
if strcmpi(app.TabGroup.SelectedTab.Title, 'Segmentation')
% do this
else
% do that
end
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by