获取控件相对于整个屏幕的位置?

发布于 2024-10-17 04:23:54 字数 136 浏览 1 评论 0原文

假设我有一个 Control,它的位置是相对于它的父级的。如果它嵌入了很多次并且是主窗体的曾曾孙,我如何确定它在整个屏幕上的位置,而不仅仅是它在直接父窗体中的位置?这是为了通过屏幕截图打印特定控件(因为对于某些控件,DrawToBitmap 无法正常工作)。

Let's say I have a Control and its location is relative to its parent. If its embedded many times and is the great great great grandchild of the main form, how can I determine what its location is on my entire screen, not just its location in the immediate parent? This is for the purpose of printing a particular Control via a screenshot (since for some controls the DrawToBitmap doesn't work properly).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雅心素梦 2024-10-24 04:23:54

您正在寻找 PointToScreen< /代码>方法

Point location = someControl.PointToScreen(Point.Empty);

You're looking for the PointToScreen method:

Point location = someControl.PointToScreen(Point.Empty);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文