码迷,mamicode.com
首页 > 移动开发 > 详细

java Swing组件随着窗口拖动等比移动或等比放大

时间:2019-06-15 10:22:40      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:窗口   imp   exce   dcom   opera   try   operation   ali   exception   

实现原理很简单,

1清空布局(使用绝对布局)

2添加监听器(监听窗口是否被拖动)

3在监听器里面动态调整 组件的位置

效果如下:

技术图片

拖动之后效果:

技术图片

代码实现:

import java.awt.EventQueue;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JButton;
import javax.swing.JTextField;


public class Test {

    private JFrame frame;
    private JTextField textField;

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Test window = new Test();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public Test() {
        initialize();
    }

    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().setLayout(null);//清空布局
        
        JLabel label = new JLabel("标签");
        label.setBounds(81, 63, 61, 16);
        frame.getContentPane().add(label);
        
        JButton button = new JButton("按钮");
        button.setBounds(252, 58, 117, 29);
        frame.getContentPane().add(button);
        
        textField = new JTextField();
        textField.setText("文本框");
        textField.setBounds(81, 110, 288, 26);
        frame.getContentPane().add(textField);
        textField.setColumns(10);
        
        frame.addComponentListener(new ComponentAdapter() {//拖动窗口监听
            public void componentResized(ComponentEvent e) {  
                int whidth=frame.getWidth();//获取窗口宽度
                int height=frame.getHeight();//获取窗口高度  你也可以设置高度居中
                //将lable放在 窗口左边的1/3处
                label.setBounds(whidth/3, 63, 61, 16);//(起始点x,起始点y,宽地w,高h)  标签设置宽高不明显
                //将lable放在 窗口左边的1/2处
                button.setBounds(whidth/2, 63, 61, 16);//(起始点x,起始点y,宽地w,高h)
                //宽度始终是窗口的1/2
                textField.setBounds(81, 110, whidth/2, 26);//(起始点x,起始点y,宽地w,高h)
            }  

        }); 
        
    }

}

 

java Swing组件随着窗口拖动等比移动或等比放大

标签:窗口   imp   exce   dcom   opera   try   operation   ali   exception   

原文地址:https://www.cnblogs.com/easyidea/p/11026032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!