Icon Size of Toolbar Items (Windows)

BlitzMax Forums/MaxGUI Module/Icon Size of Toolbar Items (Windows)

shinkiro1(Posted 2011) [#1]
Is there any Windows specific command/hack I could use to make icons in the toolbar 32 x 32 px.
For Mac OS you just have to change line 2455 to this:
[toolbar setSizeMode:NSToolbarSizeModeRegular];


I haven't found the same solution for windows yet. Anyone done this?


jsp(Posted 2011) [#2]
Icons in a Windows toolbar can be 16x16, 24x24 or 32x32, if I remember correctly.
So just add your icons of that size to your window.

There is no system wide setting as far as I know to change the size on the fly if that is what you want, because the toolbar is under individual application control. (In contrast to icon sizes on the desktop which can vary from very small to very large dynamically)

In MaxGui we normally add Icons as raster image in a certain resolution so again not easy to change size. There is might a hack possible by using icon files instead which can hold all different sizes.