Darren Oster
Darren Oster

Reputation: 9196

SystemIcons default size

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

Upvotes: 1

Views: 527

Answers (1)

quip
quip

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

Related Questions