hzg392622955 2016-05-06 07:54 采纳率: 0%
浏览 1770

win32全屏覆盖任务栏无效

void EnterFullScreen(WindowInfo* win, bool presentation)
{
HWND hwnd = FindWindow(NULL, L"DetailShow");
HWND hwnd1 = ::GetParent(win->hwndFrame);
if (!hwnd)
return;

if (!HasPermission(Perm_FullscreenAccess) || gPluginMode)
    return;

if ((presentation ? win->presentation : win->isFullScreen) || !IsWindowVisible(hwnd))
    return;

AssertCrash(presentation ? !win->isFullScreen : !win->presentation);
if (presentation) {
    AssertCrash(win->ctrl);
    if (!win->IsDocLoaded())
        return;

    if (IsZoomed(hwnd))
        win->windowStateBeforePresentation = WIN_STATE_MAXIMIZED;
    else
        win->windowStateBeforePresentation = WIN_STATE_NORMAL;
    win->presentation = PM_ENABLED;

    SetTimer(win->hwndCanvas, HIDE_CURSOR_TIMER_ID, HIDE_CURSOR_DELAY_IN_MS, nullptr);
}
else {
    win->isFullScreen = true;
}

// ToC and Favorites sidebars are hidden when entering presentation mode
// TODO: make showFavorites a per-window pref
bool showFavoritesTmp = gGlobalPrefs->showFavorites;
if (presentation && (win->tocVisible || gGlobalPrefs->showFavorites)) {
    SetSidebarVisibility(win, false, false);
}

long ws = GetWindowLong(hwnd, GWL_STYLE);
if (!presentation || !win->isFullScreen)
    win->nonFullScreenWindowStyle = ws;
// remove window styles that add to non-client area
ws &= ~(WS_CAPTION | WS_THICKFRAME);
ws |= WS_MAXIMIZE;

win->nonFullScreenFrameRect = WindowRect(hwnd);
RectI rect = GetFullscreenRect(hwnd);

SetMenu(hwnd, nullptr);
ShowWindow(win->hwndReBar, SW_HIDE);
ShowWindow(win->hwndTabBar, SW_HIDE);
ShowWindow(win->hwndCaption, SW_HIDE);
SetWindowLong(hwnd, GWL_STYLE, ws);
SetWindowPos(hwnd, nullptr, rect.x, rect.y, rect.dx, rect.dy, SWP_FRAMECHANGED | SWP_NOACTIVATE | SWP_NOZORDER);
ShowWindow(hwnd, SW_SHOWMAXIMIZED);
if (presentation)
    win->ctrl->SetPresentationMode(true);

// Make sure that no toolbar/sidebar keeps the focus
SetFocus(hwnd);
// restore gGlobalPrefs->showFavorites changed by SetSidebarVisibility()
gGlobalPrefs->showFavorites = showFavoritesTmp;

}

  • 写回答

1条回答

  • threenewbee 2016-05-06 15:44
    关注

    用setwindowpos swp_topmost将你的窗口置顶看看

    评论

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?