How can I make components (eg label or list box) visible, depending on the input of an edit field (numeric)?

15 次查看(过去 30 天)
Hi guys! I'm new to MATLAB AppDesigner and I need your help! I created a numeric edit field, a label and a list box (label and list box are invisible at first). If the user enters '1' the label and the list box should appear. If the user enters another number both should stay invisible. The problem is, that they always stay invisible, no matter what the user enters. Here's my code, which doesn't work. Can somebody please help me? Thanks!
function EditFieldValueChanged(app, event)
value = app.EditField.Value;
if value == 1
app.Label.HandleVisibility = 'on';
app.ListBox.HandleVisibility = 'on';
else
app.Label.HandleVisibility = 'off';
app.ListBox.HandleVisibility = 'off';
end
end

采纳的回答

Mario Malic
Mario Malic 2021-8-25
Hello,
Property Visible changes the visibility of the object.
app.Label.Visible = 'on';
app.ListBox.Visible = 'on';
Property HandleVisibility allows the object handle to be found or not by findall (or others) function.

更多回答(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