HI

Is there any chance to load a .ui file and "render" it to a bitmap (pixel graphics) resource (memory object or file) without displaying it?
You can load UI File with QUiLoader and save image with
Qt Code:
  1. QPixmap pix (w->size());
  2. w->render(&pix);
  3.  
  4. pix.save (outFileName);
To copy to clipboard, switch view to plain text mode 

Is there any chance to do that from within a .NET application?
This is a question for a .NET/C# forum