Love Pisces

          It's not your aptitude but your attitude that determines your altitude!
          posts - 2, comments - 43, trackbacks - 0, articles - 9

          2007年7月13日

          1.讓Frame框顯示在屏幕中間的代碼:
              
           1     Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
           2     Dimension frameSize = myFrame.getSize();
           3     if (frameSize.height > screenSize.height) {
           4            frameSize.height = screenSize.height;
           5         }

           6     if (frameSize.width > screenSize.width) {
           7            frameSize.width = screenSize.width;
           8         }

           9     myFrame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
          10   myFrame.setVisible(true);

                其中,myFrame是要顯示在屏幕中間的窗體,以上代碼寫在父窗體中。

          posted @ 2007-07-13 21:42 筱筱 閱讀(345) | 評論 (0)編輯 收藏

          主站蜘蛛池模板: 梁山县| 百色市| 尖扎县| 许昌县| 新乐市| 吴堡县| 合肥市| 保靖县| 营山县| 堆龙德庆县| 枣庄市| 光泽县| 聊城市| 朔州市| 白沙| 阳春市| 桑植县| 多伦县| 宁晋县| 洛浦县| 开平市| 垣曲县| 林周县| 临朐县| 理塘县| 龙海市| 平利县| 萝北县| 郁南县| 吴忠市| 定南县| 长宁县| 那曲县| 栾城县| 大庆市| 湖州市| 乾安县| 温州市| 清流县| 浦江县| 大同县|