44

WiX is great in that there is no GUI, you just write the installer you want it to be. No fiddling with GUI-wizards!

However, drawing GUI is actually one thing I prefer to use a GUI for.

So, is there any Dialog-drawing program which exports WiX-data?
(I suppose else-wise perhaps I could transform what Visual Studio's forms editor does to WiX-XML.)

/L

leiflundgren
  • 2,876
  • 7
  • 35
  • 53

5 Answers5

54

I created a full list of editors for WiX here: https://robmensching.com/blog/posts/2007/11/20/wix-editors/ (which is amazingly still up to date)

Community
  • 1
  • 1
Rob Mensching
  • 33,834
  • 5
  • 90
  • 130
36

You can try WixEdit.

VitalyVal
  • 1,320
  • 12
  • 13
  • I highly recommend this installer. It walks you through the step of creating an installer from scratch. It may be out of date, but you can always use SharpDevelop to finish where it left off. – ATL_DEV Jul 26 '12 at 03:41
  • 6
    Hasn't been updated since March 2011. – PeterX Apr 23 '13 at 07:22
  • [Changelog](https://wixedit.github.io/changelog/) shows it's been updated (October 14, 2021 at time of writing). – Vimes Jun 11 '22 at 01:38
9

SharpDevelop also has built-in capabilities for laying out a WiX dialog. I prefer it over WixEdit.

Bryan Batchelder
  • 3,627
  • 21
  • 17
5

this is excellent GUI IDE and it is open source.....

try this... http://community.sharpdevelop.net/blogs/mattward/archive/2006/09/17/WixIntegration.aspx

download IDE from here:

http://www.icsharpcode.net/OpenSource/SD/Download/

Alex
  • 37,502
  • 51
  • 204
  • 332
Rikin Patel
  • 8,848
  • 7
  • 70
  • 78
3

If you use Visual Studio 2008/2010 and want to install an application that requires .NET framework you might be interested in having a look at SharpSetup. It allows you to graphically edit installer UI as WinForms controls (and use VS designer for that).

Tomasz Grobelny
  • 2,666
  • 3
  • 33
  • 43