-1

Based in this my working code, now i need of a ScrollBox component and a Image component inside he. Eg:

enter image description here

The problem now is the ScrollBox. The MDIChild Form always stays behind, you can test, changing ScrollBox Align (None/Client) property.

Then what is need to MDIChild Form stay above of ScrollBox?

FLASHCODER
  • 1
  • 7
  • 24
  • What do you want to do? Even if an mdi child would come in front of the scrollbox, it wouldn't be a child of the scrollbox and so the scrollbox wouldn't scroll the children. – Sertac Akyuz Sep 02 '19 at 19:14
  • Is it what you want, scroll mdi children into view when they are moved to sides? – Sertac Akyuz Sep 02 '19 at 19:15

1 Answers1

3

The MDI client window that hosts the MDI child forms is the bottom most window of the MDIForm's content. You can't make MDI child forms appear on top of anything else, because literally everything else placed on the MDIForm is on top of the MDI client window and thus on top of the child forms.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770