Yes, you can create full winform UI's, there is a sample shipped with MyGeneration, see
Tutorials=>C#=>Chapter 2 and look at the interface code tab, you'll see
- Code: Select all
public class MyForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Label lblDatabases;
private System.Windows.Forms.ComboBox cboxDatabases;
private System.Windows.Forms.Label lblTables;
private System.Windows.Forms.ListBox lboxTables;
private System.Windows.Forms.Button btnOkay;
}
The trick here is to get the users choices back to the body of the template, which you can see in.
- Code: Select all
public void btnOkay_Click(object sender, EventArgs args)
{
}
Also, take a look at this, it's the code for the
Samples -> Winform Demo template
http://www.mygenerationsoftware.com/Tem ... 3762b5337e
You can bind to MyMeta and write your full blown UI in a Windows.Forms app, however, as stated in the license, you cannot ship any product bound to MyMeta or redistribute it in any way. In that zip file you will see how to manually load an instance of MyMeta, you're executeable will have to be named MyGeneration.exe. See if you can make sense of this.