Jtextarea 如何添加滚动条

Jtextarea 如何添加滚动条,第1张

JTextArea添加滚动条代码:

package com.test

import java.awt.*

import javax.swing.*

public class Test extends JFrame {

JMenuBar jb

 JTextArea ja

 JScrollPane jsp

public void setImage() {

  jb = new

JMenuBar()

  this.setJMenuBar(jb)

  ja = new

JTextArea()

  jsp = new JScrollPane(ja)

this.setSize(600, 400)

  this.setLayout(new

BorderLayout())

  this.add(jsp)

  this.setVisible(true)

 }

 public static void main(String[] args) {

  Test a =

new

Test()

  a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)

  a.setImage()

}

}

运行效果图:

public class Frame extends JFrame 

    public Frame() 

    { Container contentPane=getContentPane()

     setTitle("抛硬币")

  setBounds(20, 20, 500, 400)

  setVisible(true)  

  JTextArea jTextArea = new JTextArea(40,40)      

  JScrollPane sp=new JScrollPane(jTextArea) 

  JButton jButton=new JButton("我是按钮")

  jButton.setBounds(10, 10, 80, 60)

contentPane.add(sp)

contentPane.add(jButton,BorderLayout.NORTH)

setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE)

}

public static void main(String[] args) 

    {

       Frame a = new Frame()

    }

}

运行后你把窗口放大或缩小都可以看到

GridLayout没法调整每个组件大小,所有组件都是一样的大小。

要调整大小需要换种Layout,比如BorderLayout

添加滚动条用JScrollPane,比如给jtaContent添加滚动条并设置需要的时候才显示滚动条

JTextArea jtaContent = new JTextArea()

JScrollPane scroll = new JScrollPane(jtaContent )

scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED) 

scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11648921.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存