Question

What is the default (i.e. native) size of a System.Drawing.SystemIcons icon?

Was it helpful?

Solution

I get 32 on Windows XP.

System.Drawing.Icon SystemIcon = System.Drawing.SystemIcons.Application;
Console.WriteLine(SystemIcon.Height);
Console.WriteLine(SystemIcon.Width);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top