Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Say I put a Shape on a Canvas like this:

Canvas.SetLeft(myShape, 50);
Canvas.SetTop(myShape, 30);
canvas.Children.Add(myShape);

After that, myShape was drag & dropped on this Canvas.

How can I determine the current myShape coordinates ?

For example, before the drag & drop I would like to get (50,30). Thanks !

share|improve this question

1 Answer

up vote 4 down vote accepted
var left = Canvas.GetLeft(myShape);
var top = Canvas.GetTop(myShape);
share|improve this answer
Thanks a lot !! – user242408 Jan 7 '10 at 20:41
1  
You might want to accept Aviad's answer. Thanks doesn't feed his kids. ;-) – Zano Jan 7 '10 at 21:03
Nice, althought accepting the answer doesn't feed his kids either. My bad :-) – Zano Jan 14 '10 at 19:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.