【Matlab App Designer】mlapp下新建信息彈窗并進(jìn)行更新
【背景】
某窗口需要實(shí)現(xiàn),點(diǎn)擊表格內(nèi)某一行時(shí),相應(yīng)的彈窗也進(jìn)行信息更新。
【相關(guān)代碼】
? ? ? function [ app ] = ViewFigureFcn( app , Data )
? ? ? ? ? ? % 若為mlapp則屬性ViewFigure必須存在
? ? ? ? ? ? if ishandle(app.ViewFigure)==1
? ? ? ? ? ? ? ? set(findobj(app.ViewFigure.Children,'Type','uitextarea'),'Value',Data);
? ? ? ? ? ? else
? ? ? ? ? ? ? ? app.ViewFigure = uifigure('Name','參考信息','Position',[300,300,400,400]);
? ? ? ? ? ? ? ? textarea = uitextarea(uigridlayout( app.ViewFigure,'RowHeight',{'1x'},'ColumnWidth',{'1x'}) , ...
? ? ? ? ? ? ? ? ? ? 'Value',Data,'Editable',false,'WordWrap','on');
? ? ? ? ? ? ? ? textarea.Layout.Row = [ 1 ];
? ? ? ? ? ? ? ? textarea.Layout.Column = [ 1 ];
? ? ? ? ? ? end
? ? ? ? end
【代碼調(diào)用】
% event.Source.Data 為表格CellSelectionFcn內(nèi)屬性[ app ] = ViewFigureFcn( app , event.Source.Data{event.Indices(1),1} );
【效果展示】

