IconsSystemInformation Property

Information (small version for the summary) Gets an Icon instance that contains the Information icon as it is displayed by the current operating system.
On Windows Vista and above sizes range from 16x16 to 256x256, on Windows XP the largest resolution is 48x48, and on Linux the icon has always 32x32 and 16x16 image sizes.

See the online help for the icon images.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.0.0-rc.1
C#
public static Icon SystemInformation { get; }

Property Value

Icon

Examples

On Windows 11 the icon contains 8 images from 16x16 to 256x256. The 32x32 and 16x16 ones look like this:
Information 32x32 Windows 11Information 16x16 Windows 11

On Windows 10 the icon contains 11 images from 16x16 to 256x256. The 32x32 and 16x16 ones look like this:
Information 32x32 Windows 10Information 16x16 Windows 10

On Windows 8 the icon contains 8 images from 16x16 to 256x256. The 32x32 and 16x16 ones look like this:
Information 32x32 Windows 8Information 16x16 Windows 8

On Windows Vista and Windows 7 the icon contains 4 images from 16x16 to 256x256. The 32x32 and 16x16 ones look like this:
Information 32x32 Windows VistaInformation 16x16 Windows Vista

  Note

The Information property returns a similar icon, but with 3 additional resolutions.

On Windows XP the icon contains 3 images from 16x16 to 48x48. The 32x32 and 16x16 ones look like this:
Information Windows XP 32x32Information Windows XP 16x16

On Linux/Mono the icon contains the following 32x32 and 16x16 images:
Information Linux/Mono 32x32Information Linux/Mono 16x16

  Note

On Linux the .NET Core build mistakenly returns the SystemError icon, which is an issue in the SystemIcons implementation of .NET Core.

See Also