VNC如何不断重绘窗口?

发布于 2024-11-04 05:54:53 字数 298 浏览 8 评论 0原文

即使用户处于非活动状态,VNC 如何向窗口发送 REPAINT 消息?

我想在 C Sharp 中实现这一点 - 我查看了 PrintWindowSendMessage 方法,但它们都没有实现与 VNC 相同的功能(通过捕获进行测试)图像及其黑色),但使用 VNC 我可以获得完整的图片。

他们使用什么技术来做到这一点?是否可以在 C Sharp 中实现这一点,以使窗口在用户不活动(即 RDP 关闭、最小化或类似)时始终重新绘制甚至

谢谢大家

How does VNC send REPAINT messages to windows even when a user is not active?

I would like to implement this in C sharp - I've had a look at the PrintWindow, SendMessage methods and none of them achieve the same thing as VNC (tested by capturing images and its black) but with VNC I get the full picture.

What techniques are they using to do this and can this be implemented in C sharp to get windows to always repaint even when a user is not active (i.e. RDP is closed, minimised or similar).

Thanks all

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

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

发布评论

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

评论(2

物价感观 2024-11-11 05:54:54

您可以使用视频游戏所使用的技术,该技术包括在 CPU 空闲时间期间永久重绘窗口。

我在此处找到了一个 C# 实现。

您只需根据您的需求进行调整即可。

You could use the technique used by video games, which consists in redrawing permanently a window during CPU idle time.

I found a C# implementation here.

You just have to adapt it to your needs.

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