server 发表于 2024-12-14 01:19:36

分享个API,DwmExtendFrameIntoClientArea

话说,这个API 是设置用户区的,但是实际上并非实际上的用户区,有点乱!


<火山程序 类型 = "通常" 版本 = 1 />

方法 _窗口_置用户区域 <公开 静态 类型 = 逻辑型 注释 = "" 注释 = "" 折叠 折叠2 @禁止流程检查 = 真 @视窗.外部头文件 = "uxtheme.h">
参数 窗口句柄 <类型 = 变整数>
参数 左边 <类型 = 整数 @默认值 = 0>
参数 顶边 <类型 = 整数 @默认值 = 0>
参数 右边 <类型 = 整数 @默认值 = 0>
参数 底边 <类型 = 整数 @默认值 = 0>
{
    @ typedef HRESULT (WINAPI *PFN_DWMEFICA)(HWND, const MARGINS*);
    @ static PFN_DWMEFICA g_pfnDwmExtendFrameIntoClientArea;
    @ if(!g_pfnDwmExtendFrameIntoClientArea){g_pfnDwmExtendFrameIntoClientArea = (PFN_DWMEFICA)GetProcAddress(LoadLibrary(L"dwmapi.dll"), "DwmExtendFrameIntoClientArea");}
    @ MARGINS margins ;
    @ margins.cxLeftWidth=@<左边>;
    @ margins.cyTopHeight=@<顶边>;
    @ margins.cxRightWidth=@<右边>;
    @ margins.cyBottomHeight=@<底边>;
    @ return g_pfnDwmExtendFrameIntoClientArea((HWND)@<窗口句柄>, &margins)==S_OK;

}


页: [1]
查看完整版本: 分享个API,DwmExtendFrameIntoClientArea