我已经拥有在 MATLAB 中拖放单个框所需的功能。我编写的代码用几个框填充了该图。在另一个循环中,我在图中填充了更多的框(以字符串形式保存不同的信息)。
这两组框与我在它们的 UserData 中放置的数字相关(对应的数字;对于每个框,都有另一个具有相同的 UserData 内容)。通过查找包含相同 UserData 的框(并因此关联它们),我希望能够通过右键单击将第一组框的成员重新定位到相对于第二组框的相应成员的相同位置我刚刚拖动的框(uicontextmenu)。
function recallfcn(hObject,eventdata)
for ydx=1:2
diag_detail=get(gco,'UserData'); % This line should be in the drag fcn
diag_pos=get(gco,'Position'); % So should this one (for current objects)
xvar=diag_pos(1,1);
yvar=diag_pos(1,2);
detail=[diag_detail ydx];
set(findobj('UserData',detail),'Position',[xvar+(ydx-1.5) yvar+0.5 0.8 0.8]);
end
end
% ydx is only there to add another level of detail as I'm actually looking to move
% two boxes of the 'first kind', each of which have 2 numbers in user data, the first
% number being the same, and the second number distinguishing the first box from the
% second. The premise is the same.