Desktop control does not resize.

0
0

Hi,

I have a Wisej.Web.Page. Inside I have a panel docked to the left. A MenuBar docked to the top. And then a Wisej.Web.Desktop that is set to dock “Fill”.

The issue is that the size of the Desktop control is what it was when the designer window was closed. And it does not resize when the user resize the browser window.

Wisej v 1.4.41.0

Best regards,

Wilfred

  • You must to post comments
0
0

Hi Wilfred,

the bug was logged as WJ-8556 and a fix is included in Wisej release 1.4.50.

Best regards
Frank

  • You must to post comments
0
0

Thanks! Logged the error. The workaround is to set the Dock to Fill after InitializeComponent()

InitializeComponent();
this.desktop1.Dock = DockStyle.Fill;

 

  • Luca (ITG)
    Your test case creates two desktops, the main one and a child. If you create windows they will not show because they are going to the main desktop. It works find if you remove the Application.Desktop = new MyDesktop() line.
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.