gpt4 book ai didi

winapi - Windows 10 关闭、最小化和最大化按钮

转载 作者:行者123 更新时间:2023-12-02 10:32:12 26 4
gpt4 key购买 nike

要绘制主题按钮,我使用以下代码:

var
h: HTHEME;
begin
if UseThemes then begin
SetWindowTheme(Handle, 'explorer', nil);
h := OpenThemeData(Handle, 'WINDOW');
if h <> 0 then
try
DrawThemeBackground(h, Canvas.Handle, WP_CLOSEBUTTON, GetAeroState, ClientRect, nil);
finally
CloseThemeData(h);
end;
end
else
DrawFrameControl(Canvas.Handle, ClientRect, DFC_CAPTION, DFCS_CAPTIONCLOSE or GetClassicState)
end;

此代码工作正常,但绘制的按钮看起来像 Windows 7 主题,即使在 Windows 8 或 10 上也是如此。可以使用 Windows 10 或 8 主题绘制“关闭”按钮吗?

enter image description here

最佳答案

解决此问题的方法之一:手动解析事件的 *.msstyles 文件。通常这是 aero.msstyles。不同窗口控件的位图存储在 STREAM 部分。对于 Windows 7 ResId = 971、Windows 8:Id = 1060、Windows 10:Id = 1194。但这是手动工作,并且此位图不同。

更新:

我发现,即使对于一个版本的 Windows(测试为 8),我们也可以为该位图(png 图像)拥有不同的资源 id 值,现在我可以提供在任何 Windows 上获取资源 id 的代码(测试了 7、8、10):

function EnumStreamProc(hModule: HMODULE; AType, AName: PChar; Params: LPARAM): BOOL; stdcall;
var
Id: NativeInt;
begin
PNativeInt(Params)^ := Integer(AName);
Result := False;
end;

function GetStyleResourceId(AModule: HMODULE): Integer;
begin
Result := 0;
EnumResourceNames(AMODULE, 'STREAM', @EnumStreamProc, LPARAM(@Result));
end;

var
hLib: HMODULE;
ResId: Integer;
RS: TResourceStream;
Png: TPngImage;

begin
hLib := LoadLibraryEx(PChar(GetWindowsPath + 'Resources\Themes\Aero\aero.msstyles'),
0, LOAD_LIBRARY_AS_DATAFILE);
ResId := GetStyleResourceId(hLib);
RS := TResourceStream.CreateFromID(hLib, ResId, 'STREAM');
Png := TPngImage.Create;
Png.LoadFromStream(RS);
...
end;

更新2:

使用官方api发现未破解的方法:

var
h: HTHEME;
Rect: TRect;
PBuf, PPBuf: Pointer;
BufSize: Cardinal;
Buf: array[0..1024*1024] of Byte;


h := OpenThemeData(Handle, 'DWMWINDOW');
if h <> 0 then
try
GetThemeRect(h, WP_MINCAPTION, MNCS_ACTIVE, TMT_ATLASRECT, Rect);
PBuf := @Buf[0];
PPBuf := @PBuf;
GetThemeStream(h, WP_MINCAPTION, MNCS_ACTIVE, TMT_ATLASRECT, PBuf, BufSize, hInstance);
finally
CloseThemeData(h);
end;

我可以获取最小化按钮的 Rect,但不明白如何使用 GetThemeStream?还有应该用PBuf还是PPBuf?

关于winapi - Windows 10 关闭、最小化和最大化按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34004819/

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