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.
我很确定答案是否定的,但我必须问。我不想使用内部控件,只是窗口本身。有没有办法做到这一点?
可能取决于你想用它做什么。
即使你不能“转换”它,你仍然可以使用 P/Invoke 和 Windows API 来做很多事情。
你也许可以做一些事情
var form = Control.FromHandle(handle) as Form;
如果你能得到窗口的 HWND。