Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you find the screen position of a control in silverlight on WP7?

How do you find the screen position of a control in silverlight on WP7?

Any suggestions are much appreciated.

like image 555
Unknown1987 Avatar asked Jan 05 '12 09:01

Unknown1987


1 Answers

If you know how it's positioned (eg in a Canvas) there may be a more appropriate way to do things, but in general, you can use UIElement.TransformToVisual to convert between the control's and the global coordinate system:

var transform = myControl.TransformToVisual(Application.Current.RootVisual)
var offset = transform.Transform(new Point(0,0))

Be sure that the control has undergone layout before trying to do this, if you do it too early the error messages are generally unhelpful.

(MSDN suggests the method is present in WP7, I don't have the SDK installed to test)

like image 133
Nicholas W Avatar answered Nov 15 '22 11:11

Nicholas W