Has anyone found a way to enable/disable tabs in App Designer?

101 visualizzazioni (ultimi 30 giorni)
I am building a fairly simple GUI in I have tried implementations using findjobj, such as:
jtabgroup=findjobj(tabgrp);
jtabgroup.setEnabledAt(1,0);
but I am unsure if the app class can be read the same way (I'm very new to Java implementations). Any help would be much appreciated!
  1 Commento
Paolo Fiore
Paolo Fiore il 18 Apr 2020
Modificato: Paolo Fiore il 18 Apr 2020
I found a possible way:
app.tabNameYouWantToDisable.Parent=[];
this will make the specific tab disappear from the GUI.
When you are done with the code execution you can reassign its parent:
app.tabNameYouWantToDisable.Parent=app.TabGroup;
I found this while using Matlab R2020a.

Accedi per commentare.

Risposta accettata

David Barry
David Barry il 25 Ago 2016
I don't believe that you can yet enable/disable tabs in MATLAB and this is something I have requested from them. Using findjobj with App Designer components is probably not going to be much use to you anyway as they are no longer Java Swing components like their uicontrol predecessors.

Più risposte (3)

Adam Danz
Adam Danz il 7 Lug 2020
As of r2020a, there isn't an option to set the visibility or 'enable' property of a tab. However, you can control which tabs can be selected via the use of a SelectionChangedFcn.
Here's a demo that uses check boxes to determine whether a tab can be selected:

Jason Kulpe
Jason Kulpe il 13 Ago 2020
Modificato: Jason Kulpe il 13 Ago 2020
In my App I need to disable a tab's features (not the tab itself) while a process is occuring. My solution is to recursively find the children components of a given tab and set component.Enable = true or false. For graphics purposes I dont disable uilabels, etc (doesn't look great), so I exlude these. Edit: using MATLAB R2019a
function setEnableWithChildren(app, component, value)
% Recursively set enable status for all items
if isa(component, 'matlab.ui.control.Label') || isa(component, 'matlab.ui.control.Lamp')
return % Don't enable labels, etc.
end
if isprop(component, 'Enable')
if isa(component, 'matlab.ui.control.Table')
if value
component.Enable = 'on'; % Table uses on/off
else
component.Enable = 'off';
end
else
component.Enable = value;
end
end
if isprop(component, 'Children')
children = allchild(component);
else
children = [];
end
for child = reshape(children, 1, [])
app.setEnableWithChildren(child, value);
end
end

Desmond Ng
Desmond Ng il 1 Lug 2019
Modificato: Desmond Ng il 1 Lug 2019
Use app.TabGroup.Visible='off';

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by