8000 GitHub - smncrl/wpfgui: simple gui generation for wpf projects
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

smncrl/wpfgui

Repository files navigation

wpfgui

Super-simple gui generation for wpf applications. Full demo available here: https://github.com/smncrl/wpfguiDemo

Usage

  1. Download the dll library and add it as reference in your solution
  2. 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() {}
  1. 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:

screenshot

About

simple gui generation for wpf projects

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

0