Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 spy++ 并注意到我嵌入在 Windows 窗体中的 IE 控件在重新绘制自身时会定期调用或发送 WM_PAINT。我试图弄清楚每次该控件发送 WM_PAINT 时如何在 C# 代码中执行 C# 方法。我知道此时的 pinvoke 足够危险。
提前致谢,
鲍勃
您实际上并不需要 PInvoke 来执行此操作。正确的方法是使用子类化来处理特定的 Windows 消息。这是执行此操作的链接:
使用 .Net 处理 Windows 消息