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.
有没有办法在 C++ 控制台应用程序中创建一个窗口?我已经有一个用于创建一些数据的控制台应用程序,我想在一些图形中显示它们,而不是在控制台内部。这可能吗?
您使用一个名为 CreateWindowEx() 的函数,请参见此处。
它相当复杂,您需要创建一个 WNDCLASSEX 结构并在其上使用 RegisterClassEx(),然后将其作为参数传递给 CreateWindowEx()。您还需要创建消息过程函数。
MSDN上的这篇文章很好地贯穿了它