Windows Forms

  • Thread starter Thread starter Bim mecci via .NET 247
  • Start date Start date
B

Bim mecci via .NET 247

I have a window (call X) whose Form Border Style is set to Fixedsingle and its Maximum size is set to (378, 484 ).Its Maximizeproperty is set to false.Its MdiParent is set to a Main MdiForm(CALL M).

There is another window(Call Y) whose MdiParent is also set tothe Main Mdi Form (M).This window is open and is maximized.

When i open X which is suppose to be a floating window and whichis supposed to be shown at the center of screen its getsattached to the top of the MDI form and i cannot move thiswindow.Please let me know if there is something that come bedone to overcome this.

Any sort of help would be appreciated.

Thanks In advance

Bim
 
Hi Bim,

I think the MDI parent is unable to selectively maximize some windows and not others, so when you maximize one, all the children is trying to maximize.

An alternate solution might be to resize the "maximized" window to fill the mdi window and set BorderStyle to None.

There might be much better solutions on the web.
 
Back
Top