If you have applied translate transformation on object .
Then you can find the current object current X and Y co-ordinate with respect to its parent .
if (Obj.RenderTransform != null)
{
var transformGroup = Obj.RenderTransform.children ;
var Object ; // This is translate or Rotate Transform wat ever you applied on that particular object
for (var i = 0 ; i < transformGroup.count ; i++)
{
Object = transformGroup.getItem(i);
}
if (Object.toString() == "TranslateTransform")
{
ObjectPosX = Object.X ;
ObjectPosY = Object.Y ;
}
}
hope this is useful for you 
Thanks
Kartikey