I think we need to "standardize" API to query Taskbar icon size ourselves.
I mean, my code is basically:
if (winver >= 10)
return metrics [SM_CXICON] / 2
+ metrics [SM_CXSMICON] / 2;
else
return metrics [SM_CXICON];
But what if the user uses some other Taskbar software?
Conversation
Replying to
I want my apps to have crisp pixel-perfect Taskbar icon.
Today I'll use 24px window icon on Windows 10, and 32px (SM_CXICON) on older Windows. This works for Explorer's Taskbar.
But what if some user uses third-party Taskbar with different icon size?
Then it'll be blurry again.
1
Replying to
That makes a difference only with ungrouped taskbar, who cares about those weirdos. And that is 24px for 100% dpi, what if there are different ones?
1
Show replies

