Make a resx writer and specify the file to write to : Resx : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Resx »

 

Make a resx writer and specify the file to write to









    
using  System;

using  System.Resources;

using  System.Drawing;
using  System.Collections;
using  System.Windows.Forms;

public  class  MainClass{
    public  static  void  Main(){
        
        ResXResourceWriter  w  =  new  ResXResourceWriter("ResXForm.resx");

        Image  i  =  new  Bitmap("YourFile.bmp");
        w.AddResource("happyDude",  i);
        
        w.AddResource("welcomeString",  "Hello  new  resource  format!");

        w.Generate();
        w.Close();
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Resx