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
2008-10-22 22:50:19