在wpf中找到uielement的中心
如何在 wpf 中找到 UIElement
的中心?
How can I find the center of a UIElement
in wpf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 wpf 中找到 UIElement
的中心?
How can I find the center of a UIElement
in wpf?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以获得控件的绝对位置,如下所示,
其中
myVisual
是您的控件,rootVisual
是父控件(请参阅获取 wpf 窗口内元素的绝对位置),这样你就可以找到 uielement 的中心像这样You can get absolute position of the control like this
where
myVisual
is your control androotVisual
is the parent control(see Get Absolute Position of element within the window in wpf), so you can find the center of the uielement like this以@ArsenMkrt为基础,
Building off @ArsenMkrt,