获取控件相对于整个屏幕的位置?
假设我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
PointToScreen< /代码>方法
:
You're looking for the
PointToScreen
method: