Hi,
What is the recommended technique to create applications with only one window in Xojo? I wish I could create components, and loads them in the central part of the window as the web version, but in the desktop version … But without using Page Panels… It’s possible ?
[quote=118549:@Adelar Duarte]Hi,
What is the recommended technique to create applications with only one window in Xojo? I wish I could create components, and loads them in the central part of the window as the web version, but in the desktop version … But without using Page Panels… It’s possible ?[/quote]
Is this what you mean?
http://documentation.xojo.com/index.php/ContainerControl
Hi Gavin,
Yes, apparently so. You have already used this way? Can I change the onscreen controls at runtime? This way I will have the same effect of a webpage + WebContainer?
I Don’t know why, but I think that i read something about this don’t work… But, I will try… thank you so much for reply.
[quote=118558:@Adelar Duarte]Hi Gavin,
Yes, apparently so. You have already used this way?[/quote]
Yes, a lot of (most?) Xojo projects use ContainerControls somewhere. They’re handy for making custom controls and they’re handy for making a dynamic user interface. I often use them if the interface is very complex - I break up the interface into several ContainerControls, it makes it easier to deal with.
There are a few ContainerControl examples in the included Examples (inside Desktop). There’s even a webinar: http://youtu.be/wMhaX0ZCK5A
Hope that helps.
helped a lot … very much. Thank you.