Java 版 (精华区)
举例说明: Frame1_AboutBox为一个Dialog窗口
Frame1_AboutBox dlg = new Frame1_AboutBox(this);
Dimension dlgSize = dlg.getPreferredSize();
Dimension frmSize = getSize();
Point loc = getLocation();
dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x,
(frmSize.height - dlgSize.height) / 2 + loc.y);
dlg.setModal(true);
dlg.pack();
dlg.show();
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.077毫秒