Working with system icons in a C # application

Where can I find all the system icons used in Windows XP / Vista / 7? Is it possible?

I tried using SHGetStockIconInfo () , but it only returns some icons.

+5
source share
2 answers

For Windows 7, you can find many icons here:

%SystemRoot%\system32\DDORes.dll
%SystemRoot%\system32\imageres.dll
%SystemRoot%\system32\shell32.dll

I would not recommend retrieving them and using them, although I believe this is a copyright violation.

You can get a whole bunch of Windows images in Visual Studio, as described here:

http://msdn.microsoft.com/en-us/library/ms246582.aspx

Visual Studio 2010 , Microsoft Windows, Office, Microsoft Visual Studio Microsoft. 1000 , Microsoft.

EDIT:

Visual Studio 2008:

http://msdn.microsoft.com/en-us/library/ms246582(v=vs.90).aspx

Visual Studio 2005:

http://msdn.microsoft.com/en-us/library/ms246582(v=vs.80).aspx

+14

, , SystemIcons System.Drawing.

+4

All Articles