How do I ask Windows for the size of system tray icons?

前端 未结 3 1384
陌清茗
陌清茗 2021-01-02 10:26

I noticed that my app sends icons to the Windows tray with a size of 16x16 pixels--and my Vista PC I\'ve got a doublewide taskbar that appears to show icons at 18x18. The re

3条回答
  •  生来不讨喜
    2021-01-02 10:33

    Create your icons in multiple formats, and let Windows select the one it wants.

    Here's the Wikipedia article on the .ico format.

    If you really need to know, GetSystemMetrics with a parameter of SM_CXICON or SM_CYICON will tell you the width and height that Windows wants to load.

提交回复
热议问题