繁体   English   中英

scrollRectToVisible 不会将滚动窗格移至顶部

[英]scrollRectToVisible doesn't move scrollpane to top

下面是我的代码的缩短版本来说明问题。 我希望 scrollRectToVisible 将滚动条和滚动窗格移回顶部,但它仍然位于底部。 在此先感谢您的任何建议。

package testing;

import javax.swing.SwingUtilities;

public class Testing {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new GUItest();
            }
        });
    }
}
package testing;

import java.awt.Dimension;
import java.awt.Rectangle;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;

public class GUItest extends JFrame {
    private JEditorPane myEditorPane;
    private JScrollPane myScrollPane;
    public GUItest() {
        myEditorPane = new JEditorPane();
        myScrollPane = new JScrollPane(myEditorPane);
        myScrollPane.setPreferredSize(new Dimension(400, 200));
        getContentPane().add(myScrollPane);
        myEditorPane.setContentType("text/html");
        myEditorPane.setText("<html>" + "test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>" + "</html>");
        Rectangle rect = new Rectangle(1, 1, 1, 1);
        myEditorPane.scrollRectToVisible(rect);
        pack();
        setVisible(true);
    }
}

如果您在JFrame可见后“在下一帧渲染周期中”进行滚动,则它会起作用:

import javax.swing.SwingUtilities;
import java.awt.Dimension;
import java.awt.Rectangle;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;

public class GUItest extends JFrame  {
    private JEditorPane myEditorPane;
    private JScrollPane myScrollPane;

    public GUItest(){
        myEditorPane = new JEditorPane(); 
        myScrollPane = new JScrollPane(myEditorPane);
        myScrollPane.setPreferredSize(new Dimension(400, 100));
        getContentPane().add(myScrollPane);
        myEditorPane.setContentType("text/html");
        myEditorPane.setText("<html>" + "test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>" + "</html>");
        Rectangle rect = new Rectangle(1,1,1,1);
        pack();
        setVisible(true);

        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                myEditorPane.scrollRectToVisible(rect);
            }
        });
    }    


    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable(){
            public void run(){
                new GUItest();
            }
        });
    }
}

看起来JFrame必须有效/可见才能发出滚动命令。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM