tags:

views:

150

answers:

1

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

+1  A: 

I get 32 on Windows XP.

System.Drawing.Icon SystemIcon = System.Drawing.SystemIcons.Application;
Console.WriteLine(SystemIcon.Height);
Console.WriteLine(SystemIcon.Width);
quip