How to get specific icon in a container (like dll) in XAML?

Viewed 2159

I can set in XAML the icon container:

<Image Source="Shell32.dll.ico" />

But how can I set in XAML the icon index in the container ? something like:

<Image Source="Shell32.dll,5" />

Or like:

<Image Source="Shell32.dll" Index="5" />

etc...

1 Answers
Related