How to load a TCustomImageList
with all system icons used by Windows in dialog boxes (Standard icons like warning, error, information, confirmation..)?
I would like to find a solution which works on Windows XP and later.
Old Skull
Quick example:
procedure TForm1.Button2Click(Sender: TObject);
var
t_Icon: TIcon;
begin
t_Icon := TIcon.Create();
t_Icon.Handle := LoadImage( 0, MAKEINTRESOURCE(32513), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE or LR_SHARED );
if ( t_Icon.Handle <> 0 ) then
ImageList1.AddIcon( t_Icon );
// .............
t_Icon.Free();
end;
来源:https://stackoverflow.com/questions/36763562/how-to-load-imagelist-with-system-dialog-icons