现在我可以绘制游戏,但前提是它们处于窗口模式,我只是在TopMost
表单上绘制并将其设置为可点击:
//C++ .NET 4
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) {
int initialStyle = GetWindowLong(this->Handle, -20);
SetWindowLong(this->Handle, -20, initialStyle | 0x80000 | 0x20);
}
但如果游戏全屏运行,我将无法做到这一点:(
我可以用全屏游戏做点什么吗?(如果可能,使用 C++)