javax.swing.JDesktopPane.setBounds()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中javax.swing.JDesktopPane.setBounds()方法的一些代码示例,展示了JDesktopPane.setBounds()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JDesktopPane.setBounds()方法的具体详情如下:
包路径:javax.swing.JDesktopPane
类名称:JDesktopPane
方法名:setBounds

JDesktopPane.setBounds介绍

暂无

代码示例

代码示例来源:origin: fcrepo3/fcrepo

@Override
public void setBounds(int x, int y, int w, int h) {
  super.setBounds(x, y, w, h);
  checkDesktopSize();
}

代码示例来源:origin: stackoverflow.com

desktopPane.setBounds(10, 56, 714, 395);
contentPane.add(desktopPane);

代码示例来源:origin: stackoverflow.com

JInternalFrame frmUpdateData = null;
 frmUpdateData = new JInternalFrame("Test", true, true);
 frmUpdateData.setBounds(0, 0, 200, 200);
 JDesktopPane desktopPane = new JDesktopPane();
 desktopPane.setBounds(0, 0, 600, 600);
 desktopPane.add(frmUpdateData);
 desktopPane.setVisible(true);
 frmUpdateData.setVisible(true);
 JFrame frame = new JFrame();
 frame.setBounds(0, 0, 600, 600);
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 frame.getContentPane().add(desktopPane);
 frame.setVisible(true);
 while (frmUpdateData != null && !frmUpdateData.isClosed()) {
   try {
     Thread.sleep(100);
   } catch (InterruptedException e) {
     e.printStackTrace();
   }
 }
 JOptionPane.showMessageDialog(null, "Done");

相关文章