1

我已经拥有在 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.
4

3 回答 3

3

我通常使用findall代替findobj,以防从外部看不到对象的句柄。除此之外,我不明白为什么您的代码不起作用。

这是一个例子:

%# make a figure with two buttons, same userData
fh=figure,
uicontrol('userdata',[2 3],'parent',fh)
uicontrol('userData',[2 3],'units','normalized','position',[0.5 0.5,0.1 0.1],'parent',fh)

%# change color to red
set(findall(fh,'userData',[2 3]),'backgroundcolor','r')

%# move to the same position
set(findall(fh,'userData',[2 3]),'position',[0.3,0.3,0.1,0.1])
于 2011-07-13T14:54:51.630 回答
3

正如 Jonas 所暗示的那样,对象的'HandleVisibility'属性将确定该对象是否出现在其父级的子级列表中,从而确定它是否会由FINDOBJ 之类的函数返回。标准的解决方法是改用函数FINDALL

但是,该'HandleVisibility'属性在确定一个对象是否可以成为当前对象(即可由函数 GCO 返回)时也起作用。如果设置为'off',则该对象不能成为当前对象。此外,如果对象的父图形的'HandleVisibility'属性设置为,则其子对象(包括所述对象)都不能成为当前对象。'off'

如果'HandleVisibility'设置为'on''callback'用于所有对象和图形,那么我认为一切都应该正常工作。

于 2011-07-13T15:19:47.220 回答
0

你应该反转 x 和 y 向量的顺序,你可以只使用一个循环,你的代码中的变化是:

x2=x(end:-1:1); % invers the ordre
y2=y(end:-1:1);

for i=1:length(x)

set(hLine,'xdata',x(i),'ydata',y(i)); % move the point using set
                                  % to change the cooridinates.

set(hLine2,'xdata',x2(i),'ydata',y2(i));

 M(i)=getframe(gcf);

end
于 2016-05-10T13:56:39.100 回答