Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Window and toolstrip

    Hello,

    I have a toolstrip on the top of my page ( height = 20 ) and some windows that are created as the user needs. I would like to avoid those windows going on top of my toolstrip.

    I am not sure if i should set something like z-index to the toolstrip of if a should create a layout ( is this the right component? ) and create the windows inside this layout which, of course, would be outside the toolstrip area.

    Thanks!

    #2
    If they are meant to be draggable, put them inside a Canvas (which will not try to manage their positions) and set overflow:"hidden". If the Toolstrip and the area for the Windows is meant to fill the screen, put the Toolstrip and Canvas into a VLayout that fills the screen (width:100%, height:100%). Consider also setting keepInParentRect.

    Comment

    Working...
    X