Swing系列之控件

JTextArea

构造函数

常用的方法

JScrollPane

构造函数

常用的方法

实例

package demo;

import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; public class demo extends JFrame {
private JTextField textField; public demo() {
super();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(100, 100, 400, 300);
JPanel panel_North = new JPanel();
this.getContentPane().add(panel_North, BorderLayout.NORTH);
FlowLayout flowLayout = (FlowLayout) panel_North.getLayout();
flowLayout.setAlignment(FlowLayout.LEFT); JLabel label = new JLabel("name:");
label.setFont(new Font("微雅软黑", Font.BOLD + Font.ITALIC, 20));
panel_North.add(label); textField = new JTextField(20);
textField.setFont(new Font("微雅软黑", Font.BOLD + Font.ITALIC, 20));
panel_North.add(textField); JTextArea textArea = new JTextArea(6, 30);
textArea.setFont(new Font("微雅软黑", Font.BOLD + Font.ITALIC, 20));
textArea.setWrapStyleWord(true);
textArea.setLineWrap(true); JPanel panel_center = new JPanel(); FlowLayout flowLayout_center = (FlowLayout) panel_center.getLayout();
flowLayout_center.setAlignment(FlowLayout.LEFT);
this.getContentPane().add(panel_center, BorderLayout.CENTER); //设置中间的组件 JScrollPane scrollPane = new JScrollPane(textArea);
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); //设置水平滚动条出现的时间
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);//设置垂直滚动条出现的时间
panel_center.add(scrollPane); JPanel panel_header = new JPanel();
JLabel label_header = new JLabel("水平表头");
panel_header.add(label_header);
scrollPane.setColumnHeaderView(panel_header); //设置水平表头 JPanel panel_v = new JPanel();
JLabel label_v = new JLabel("垂直表头");
panel_v.add(label_v);
scrollPane.setRowHeaderView(panel_v); //设置垂直表头 } public static void main(String[] args) {
demo f = new demo();
f.setVisible(true); } }

JScrollBar

构造函数

常用方法

scrollBar_1.addAdjustmentListener(new AdjustmentListener() {    //添加一个事件侦听器
@Override
public void adjustmentValueChanged(AdjustmentEvent e) {
scrollBar_1=(JScrollBar)e.getSource(); //获得监听的控件,这里要强制转换成滚动条类型的
textField_North.setText(""+scrollBar_1.getValue()); //r如果滚动条移动了,那么就将刻度显示在文本域中 }
});
//获取文本字段的可见性,如果文本字段大小大于分配给他的大小那么可以对他进行调整
BoundedRangeModel boundedRangeModel = textField.getHorizontalVisibility();
//设置处理滚动条的以下四个基本属性的模型:minimum、maximum、value 和 extent。
scrollBar.setModel(boundedRangeModel); //通过这个的绑定,就将滚动条和文本域绑定在一起了

JTextPanel

构造函数

常用方法

实例

package demo;

import javax.swing.*;
import javax.swing.text.*;
import java.awt.*; /**
* Created by chenjiabing on 17-5-22.
*/
public class TextPane extends JFrame {
public TextPane() {
super();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(100, 100, 400, 500); JTextPane textPane = new JTextPane();
// textPane.setBackground(Color.black); // textPane.setFont(new Font("微软雅黑",Font.ITALIC,20));
JScrollPane scrollPane = new JScrollPane(textPane);
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); SimpleAttributeSet simpleAttributeSet = new SimpleAttributeSet(); //创建一个属性
StyleConstants.setForeground(simpleAttributeSet, Color.GREEN); //设置前景色
StyleConstants.setBold(simpleAttributeSet, true); //设置加粗
StyleConstants.setUnderline(simpleAttributeSet, true); //设置下划线
StyleConstants.setFontFamily(simpleAttributeSet, "微软雅黑"); //设置字体
StyleConstants.setFontSize(simpleAttributeSet, 20); //设置字体大小
StyleConstants.setItalic(simpleAttributeSet, true); //设置倾斜
StyleConstants.setStrikeThrough(simpleAttributeSet, true); //设置删除线
StyleConstants.setFirstLineIndent(simpleAttributeSet, 2.5f); //设置首行缩进
StyleConstants.setLineSpacing(simpleAttributeSet, 20);
StyleConstants.setRightIndent(simpleAttributeSet, 2.4f); textPane.setCharacterAttributes(simpleAttributeSet, true);
// Document doc=textPane.getStyledDocument(); //获得关联的文本
// try {
// doc.insertString(doc.getLength(), "陈加兵", simpleAttributeSet); //向文本中插入字符串
// }catch (BadLocationException e)
// {
// e.printStackTrace();
// }
this.getContentPane().add(scrollPane, BorderLayout.CENTER);
} public static void main(String[] args) {
TextPane text = new TextPane();
text.setVisible(true); } }
05-07 15:33