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

5 ビュー (過去 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 Center および File ExchangeDevelop 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