java – 检测JSplitPane分隔运动

前端之家收集整理的这篇文章主要介绍了java – 检测JSplitPane分隔运动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法检测何时移动JSplitPane分隔符?有没有办法添加分频器运动的监听器?
JPanel panel1 = new JPanel();
JPanel panel2 = new JPanel();
JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,panel1,panel2);
// What do I put here to be notified if the divider in sp is moved?

解决方法

我想你正在从容器寻找 addPropertyChangeListener.这样的东西
sp.addPropertyChangeListener(JSplitPane.DIVIDER_LOCATION_PROPERTY,new PropertyChangeListener() {
        @Override
        public void propertyChange(PropertyChangeEvent pce) {}
});
原文链接:https://www.f2er.com/java/122071.html

猜你在找的Java相关文章