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

조회 수: 10 (최근 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