A form always above the parent form?

  • Thread starter Thread starter Cat
  • Start date Start date
C

Cat

It's easy to make a form "Always on top". Just use .TopMost.
But I want to make the child form is on top of only its parent window,
not other application's window. Like the toolbar of Photoshop.
How can I do this? Thanks.
 
Try setting the "Owner" property, of the child, to the parent form to see if
that gets you closer to what you're looking to do.
 
How do you show the form?

childform frm = new childform();
frm.ShowDialog(this);

try that

regds
Brian keating ei9fxb
 
Back
Top