How to fix setSize issue with WizardPage?

55 Views Asked by At

Its not duplicate question. My Problem here, When I ran this page working fine in one system(OS), But if run this same code in other system(OS) widget is not showing fully. Its hiding widgets I have a WizardPage window.

class MyPage extends WizardPage{
}

MyPage page = new MyPage();
page.setSize(400, 630);

When I open this page on a different system, I am getting this page partially displaying and hiding below.

How to fix this issue?

0

There are 0 best solutions below