In App Designer
How to input data in the listbox
Give me example mlapp file or code !

답변 (1개)

Chunru
Chunru 2021년 7월 15일

0 개 추천

Here is the example from documentation of uilistbox:
function selectlistbox
fig = uifigure('Position',[100 100 350 275]);
% Create text area
txt = uitextarea(fig,...
'Position',[125 90 100 22],...
'Value','First');
% Create list box
lbox = uilistbox(fig,...
'Position',[125 120 100 78],...
'Items',{'First','Second','Third'},...
'ValueChangedFcn', @updateEditField);
% ValueChangedFcn callback
function updateEditField(src,event)
txt.Value = src.Value;
end
end

카테고리

도움말 센터File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

질문:

2021년 7월 15일

답변:

2021년 7월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by