imgui黑边解决写法
//加入以下代码MARGINS margins = { -1, -1, -1, -1 };DWM_BLURBEHIND bb = { 0 };DwmExtendFrameIntoClientArea(hwnd, &margins);bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION;bb.fEnable = true;bb.hRgnBlur = NULL;DwmEnableBlurBehindWindow(hwnd, &bb);
页:
[1]