gpt4 book ai didi

java - 如何设置 JViewport 的插图

转载 作者:行者123 更新时间:2023-11-30 09:27:50 26 4
gpt4 key购买 nike

我知道 setViewportBorder(),但我想知道您是否可以设置视口(viewport)的边界而不是仅仅用空边框填充。我想要实现的是为页眉和页脚组件创建空间,内联增加和减少按钮。

                  _
|^|
----------------| |
| | |
| JViewport | |
|________________| |
|v|

最佳答案

你总是可以自己动手

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
class Testing
{
public void buildGUI()
{
JPanel p = new JPanel(new BorderLayout());
JTextArea ta = new JTextArea(10,10);
ta.setLineWrap(true);
JScrollPane sp = new JScrollPane(ta,ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER,
ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
JLabel header = new JLabel("Header",JLabel.CENTER);
JLabel footer = new JLabel("Footer",JLabel.CENTER);
JScrollBar sBar = new JScrollBar();
sp.getVerticalScrollBar().setModel(sBar.getModel());
p.add(header,BorderLayout.NORTH);
p.add(sp,BorderLayout.CENTER);
p.add(footer,BorderLayout.SOUTH);

for(int x = 0; x < 50; x++) ta.append(x+"\n");
JFrame f = new JFrame();
f.getContentPane().add(p);
f.getContentPane().add(sBar,BorderLayout.EAST);
f.pack();
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable(){
public void run(){
new Testing().buildGUI();
}
});
}
}

关于java - 如何设置 JViewport 的插图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14317845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com