按下按钮时显示文本框

时间:2015-01-14 15:57:05

标签: matlab matlab-guide

按下按钮时如何显示文本框?

例如我有变量

set(handles.edNama2,'String',nama);

纳玛的价值是伊丽莎白

我的按钮变量是DataPribadi

我希望文本框能够显示Elisabeth的个人资料

enter image description here

1 个答案:

答案 0 :(得分:0)

这会创建文本框:

handles.edNama2 = annotation('textbox', [your_position_of_the_text_box_here]);
set(handles.edNama2, 'String', ['He needs ', num2str(10), ' $USD!!!']);

这将为您打开新信息框:

msgbox(['I want ', num2str(1e+6), ' $USD']);

因此,您可以将信息放在[]中,请记得转换为String类型。