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

后端 未结 1 961
说谎
说谎 2020-12-17 04:13

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

Any suggestions are much appreciated.

相关标签:
1条回答
  • 2020-12-17 04:51

    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)

    0 讨论(0)
提交回复
热议问题