Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I load the same icon as used by MessageBox on Windows 10?

On Windows 10 calling LoadIcon asking for the standard icon IDI_INFORMATION yields this icon:

enter image description here

On the other hand, calling MessageBox passing IDI_INFORMATION produces a dialog that uses this icon:

enter image description here

How can I obtain the second icon, if the obvious call to LoadIcon does not do so?

like image 495
Andrey Avatar asked Jun 23 '17 10:06

Andrey


1 Answers

This feels like a bug in user32.dll but Windows 8 has the same issue so I guess Microsoft doesn't care.

You can get the flat icon used by MessageBox by calling SHGetStockIconInfo:

SHSTOCKICONINFO sii;
sii.cbSize = sizeof(sii);
if (SUCCEEDED(SHGetStockIconInfo(SIID_INFO, SHGSI_ICON|SHGSI_LARGEICON, &sii)))
{
    // Use sii.hIcon here...
    DestroyIcon(sii.hIcon);
}

SHGetStockIconInfo is the documented way to get icons used in the Windows UI on Vista and later. Most of the icons come from imageres.dll but you should not assume that this is the case...

like image 171
Anders Avatar answered Nov 05 '22 12:11

Anders