Adding new window
Business Logic
this.button3.Click += new System.EventHandler(this.button3_Click);private void button3_Click(object sender, System.EventArgs e)
{
var loginForm = new Form2();
loginForm.ShowDialog();
}using Mobilize.WebMap.Common.Attributes;
namespace HelloWorld
{
[Observable]
public partial class Form2 : Mobilize.Web.Form
{
public Form2()
{
this.InitializeComponent();
}
}
}User interface


Last updated
Was this helpful?