When i start my program, I make a panel float. I also would like to make another floating panel to be docked inside the first one. How do I do that? Like that I will have one floating dock with 2 tabs inside. Thanks. P
Hmm.... Every floating panel is docked into special floating site. Its a descendant from TLMDDockSite class. Basically, you can easily find it iterating all panel's parent controls. After that, use site's DockControl method to dock another one panel into it.
Could i get some code with that? I have no idea on how to do that and I do not see anything in the small manual. I have a panel called brush. I make it float at run time . Then i have another panel called textures that i make float too. At design time, they are both docked together and they look like tabs. I would like at runtime to make textures dock inside the floating brush panel. Could you show me on how to code that? Thanks.
Comments
I have a panel called brush.
I make it float at run time .
Then i have another panel called textures that i make float too. At design time, they are both docked together and they look like tabs.
I would like at runtime to make textures dock inside the floating brush panel.
Could you show me on how to code that?
Thanks.