Controling Tabs in App Designer

17 Ansichten (letzte 30 Tage)
Aurélie B
Aurélie B am 10 Apr. 2021
Kommentiert: Mario Malic am 11 Apr. 2021
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!

Akzeptierte Antwort

Mario Malic
Mario Malic am 11 Apr. 2021
Hello,
Tabs are children of the TabGroup component. The latter component has property called SelectedTab which will be helpful.
  4 Kommentare
Aurélie B
Aurélie B am 11 Apr. 2021
Thank you so much, it works !
Mario Malic
Mario Malic am 11 Apr. 2021
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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by