如何在Swing中添加水平ScrollPanes

说明

以下示例展示了如何在Swing中添加水平ScrollPanes。

我们正在使用以下 API。

  • JScrollPane(Component view) : 在组件上创建滚动窗格。

  • JScrollPane.setHorizo​​ntalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_​​ALWAYS) : 始终显示水平条。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class SwingTester {
   private JFrame mainFrame;
   private JLabel headerLabel;
   private JLabel statusLabel;
   private JPanel controlPanel;
   
   public SwingTester(){
      prepareGUI();
   }
   public static void main(String[] args){
      SwingTester  swingControlDemo = new SwingTester();      
      swingControlDemo.showScrollPaneDemo();
   }
   private void prepareGUI(){
      mainFrame = new JFrame("一点教程网:Java Swing Examples");
      mainFrame.setSize(400,400);
      mainFrame.setLayout(new GridLayout(3, 1));
      
      mainFrame.addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent windowEvent){
            System.exit(0);
         }        
      });    
      headerLabel = new JLabel("", JLabel.CENTER);        
      statusLabel = new JLabel("",JLabel.CENTER);    
      statusLabel.setSize(350,100);

      controlPanel = new JPanel();
      controlPanel.setLayout(new FlowLayout());

      mainFrame.add(headerLabel);
      mainFrame.add(controlPanel);
      mainFrame.add(statusLabel);
      mainFrame.setVisible(true);  
   }
   
   private JTextArea outputTextArea;
   
   private void showScrollPaneDemo(){
      headerLabel.setText("Control in action: ScrollPane");
      outputTextArea = new JTextArea("",5,20);
      JScrollPane scrollPane = new JScrollPane(outputTextArea);    
      scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
      controlPanel.add(scrollPane);
      mainFrame.setVisible(true);  
   }   
}

执行效果如下:

热门文章

优秀文章