gpt4 book ai didi

c++ - 为什么CreateWindowEx会默认加上WS_CAPTION?

转载 作者:行者123 更新时间:2023-11-27 23:52:37 25 4
gpt4 key购买 nike

我正在尝试通过 CreateWindowEx 创建一个窗口, 但接缝即使我给 dwExStyle dwStyle 值 0,窗口仍然有 WS_CAPTION 风格。

代码片段如下:

   _hWnd = CreateWindowExW(iExStyle, pszClassName, pszTitle, iStyle | WS_CLIPCHILDREN, dX, dY, dWidth, dHeight,
hWndParent, 0, hInstance, NULL);
ASSERT(GetWindowLong(_hWnd, GWL_STYLE) & WS_CAPTION == 0); //<---- This will failed.

最佳答案

dwStyle = 0x00000000L 表示WS_OVERLAPPED or WS_TILED,这个窗口有一个标题栏和一个边框。

Window Styles

关于c++ - 为什么CreateWindowEx会默认加上WS_CAPTION?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45212638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com