递归火山软件开发平台

标题: 分享个API,DwmExtendFrameIntoClientArea [打印本页]

作者: server    时间: 2024-12-14 01:19
标题: 分享个API,DwmExtendFrameIntoClientArea
话说,这个API 是设置用户区的,但是实际上并非实际上的用户区,有点乱!


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

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

  18. }
复制代码







欢迎光临 递归火山软件开发平台 (https://bbs.voldp.com/) Powered by Discuz! X3.4