Use of list box Matlab GUI

조회 수: 1 (최근 30일)
Tania
Tania 2015년 9월 15일
편집: Tania 2015년 9월 16일
Hi there,
I want to know how can I link two list box and then pass the values of both list boxes in a text box using a push button.
Any suggestion will be appreciated.

채택된 답변

Walter Roberson
Walter Roberson 2015년 9월 15일
In the callback for the push button:
str1 = cellstr(get(handles.listbox1, 'string'));
val1 = get(handles.listbox1, 'value');
if isempty(val1)
selection1 = '';
else
selection1 = str1{val1};
end
str2 = cellstr(get(handles.listbox2, 'string'));
val2 = get(handles.listbox2, 'value');
if isempty(val2)
selection2 = '';
else
selection2 = str2{val2};
end
combined_selection = {selection1; selection2};
set(handles.textbox, 'string', combined_selection);
  댓글 수: 1
Tania
Tania 2015년 9월 16일
편집: Tania 2015년 9월 16일
Thank you very much. It works when I select values from each listbox and then press push button.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by