I created a sample application, and I’m a bit confused about the page structure. I have only one form, and when I run the project, the form appears as a child window. How do you add controls to the main, underlying page?
Hi Danny,
The default project template creates a child window by default. It doesn’t create the main page or main desktop. We are adding more templates.
In Wisej there are 3 top level controls and a main canvas HTML page:
In your sample app, add a Wisej.Web.Page control, open it in design mode, add controls, then in Program.Main() add new Page1().Show() – or Application.MainPage = new Page1(), the two are equivalent.
HTH
Best,
Luca
Please login first to submit.