Super-simple gui generation for wpf applications. Full demo available here: https://github.com/smncrl/wpfguiDemo
- Download the
dll
library and add it as reference in your solution - Declare which public methods and members must be exposed:
[wpfgui.Gui]
public float value = 0;
[wpfgui.Gui]
public string name = "nome";
[wpfgui.Gui]
public void MethodName() {}
- Register the gui controls somehwere in class initialization
#if DEBUG
wpfgui.GUIWindow.register(this)
#endif
Now run the application in DEBUG mode, and a secondary window will appear with generated controls: