When i move a tileElement from the group A to a group B or Group C... how can i know what group the tileElement went? but just after i release the tileElement in the group.
i've tried this code:
and then i tried to get tile.parent.parent... but doing this i get the source group... not the destination....
thanks
i've tried this code:
public
Form1()
{
InitializeComponent();
this
.radPanorama1.PanoramaElement.DragDropService.Stopping +=
new
EventHandler<Telerik.WinControls.RadServiceStoppingEventArgs>(DragDropService_Stopping);
}
void
DragDropService_Stopping(
object
sender, Telerik.WinControls.RadServiceStoppingEventArgs e)
{
if
(e.Commit)
{
RadTileElement tile =
this
.radPanorama1.PanoramaElement.DragDropService.Context
as
RadTileElement;
}
}
thanks