我想在 matlab GUI 的 uipanel 中显示输出消息。如果我使用这段代码,
hp1 = uipanel('Title','UI Panel 1',...
'Position', [157.6 30.308 62.4 12.615]);
uicontrol(...
'Parent', hp1,...
'Style','text',...
'Units', 'Normalized', 'Position', [0 0 1 1],...
'String', psancitra1);
uipanel 的大小和位置非常大,位于窗口的中心。
如何设置 uipanel 的位置、大小(宽度、长度)?
以及如何在 uipanel 中添加滑块,所以如果 messeges 行 ( psancitra1 ) 大于 uipanel 的大小,我们可以使用 scoll 栏?
感谢您之前的帮助:D