Mega Code Archive

 
Categories / C# Tutorial / GUI Windows Forms
 

Resource Generator

using System; using System.Resources; using System.Drawing; using System.Windows.Forms; using System.Reflection; class MainClass {   static void Main(string[] args)   {          ResourceWriter rw;     rw = new ResourceWriter("myResources.resources");     rw.AddResource("YourImage", new Bitmap("YourFile.Bmp"));     rw.AddResource("welcomeString", "Welcome to .NET resources.");     rw.Generate();   } }