Icon from embedded resource
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How can i load an icon from an embedded resource in mt application into a
System.Drawing.Icon
-
How can i load an icon from an embedded resource in mt application into a
System.Drawing.Icon
Get a stream to the resource using Resource.GetStream() and then use Image.FromStream()..You should be able to cast that to an icon or something to that effect...