I don't have a problem, I just want to understand how this works. When I add an icon to a WinForm, is the graphic data stored in the form somehow? If so, where?
Printable View
I don't have a problem, I just want to understand how this works. When I add an icon to a WinForm, is the graphic data stored in the form somehow? If so, where?
I can't speak for the newest versions of VB.NET - but in past versions it was stored in the Form's .resx file. If you open the file in Notepad it shouldn't be too difficult to locate the Icon related data.
I just did! You're right. It adds it as a Base64 graphic in the XML. Cool. Thank you.