What should I do to display some information multi-line on the static text in the GUI?

조회 수: 2 (최근 30일)
I want to display some information on the static text compoment in the multi-line on the GUI.I use the loop:
for i = 1:5
str = sprintf('the number of %d is completely',i);
set(handles.myStaticText, 'String', str);
end
But the line will be erased by the next line.WHat should I do if I want to display in multi-line?

채택된 답변

ES
ES 2013년 12월 12일
if you want to append to existing string, get the string first and then append required data and display it. Example:
for i = 1:5
old_str=get(handles.text1, 'String');
tmp_str=['the number of',num2str(i),' is completely'];
new_str=[old_str; {tmp_str}];
set(handles.text1, 'String', new_str);
end
  댓글 수: 2
reema
reema 2014년 6월 1일
if i want to get information about person from database.and want to display on GUI then what we can do? like in (detection and recognition system).want to display the information about the recognized person on GUI then what me do? in matlab r2013a

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by