Tool to generate a GUI (WinForms or WPF) from a class.
- by Pat
Say we've got a class like
public class Doer
{
public int Timeout {get;set;}
public string DoIt(string input)
{
string toReturn;
// Do something that involves a Timeout
return toReturn;
}
}
Is there a tool that would create a Form or Control for prototyping this class? The GUI might have a NumericUpDown…