views:

65

answers:

1

I am developing some little tools in C#, basically they just work fine as a console application with some configuration values read from the exe configuration file (System.Configuration).

But editing an XML file is not what you could call a great User Experience, so I am searching for a tool/library that could create a simple configuration screen in WPF or Winforms for the user to change these values.

This should be possible to automate for many simple cases. I did not find any existing tools that could solve this problem. Does anyone know tools that create UIs for configuration files or any tools that could speed up the creation of such a tool?

It should not be a problem to create this in pure WPF, but any tool to speed up the process is welcome.

+2  A: 

Hello,

http://blogs.msdn.com/b/publicsector/archive/2007/12/07/free-utility-web-config-editor-with-a-great-ui.aspx

Hope this helps, Teodor.

Teodor
Thanks Teodor, that project looks very good. But not what I am searching for. The tool should be used by the end-user to set a few values.
Dennis Kempin