Reputation: 9196
What is the default (i.e. native) size of a System.Drawing.SystemIcons icon?
Upvotes: 1
Views: 527
Reputation: 3694
I get 32 on Windows XP.
System.Drawing.Icon SystemIcon = System.Drawing.SystemIcons.Application;
Console.WriteLine(SystemIcon.Height);
Console.WriteLine(SystemIcon.Width);
Upvotes: 1