Conversation

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?
1
1
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
Show replies