java~为什么给JTextArea添加的滚动条不显示??
packagecom.aiflow.test;importjava.awt.Color;importjava.awt.Container;importjava.awt.F...
package com.aiflow.test;
import java.awt.Color;
import java.awt.Container;
import java.awt.Font;
import java.awt.GridLayout;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class Swing extends JFrame{
//为了方便事件驱动,将控件做成全局变量
Object[] stars = new Object[]{"Mysql","sqlserver2000","sqlserver2005","oracle"};
JComboBox jtfSQL = new JComboBox(stars);
JButton jbtnsure = new JButton("确定删除");
JButton jbtnreset = new JButton("重置");
JButton jbtnprintsql = new JButton("打印SQL语句");
JButton jbtnprintlog = new JButton("打印日志信息");
public Swing(){
//设置手动布局
this.setLayout(null);
this.setTitle("维护数据库");
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(100, 100, 600, 600);
//初始化窗体内的组件
initComponent();
//放在最后
this.setVisible(true);
}
void initComponent(){
//得到放组件的内容窗格
Container contentPane = this.getContentPane();
JTextArea jTextArea = new JTextArea(5,10);
jTextArea.setBorder(BorderFactory.createMatteBorder (2,2,2,2, Color.black));
jTextArea.setLineWrap (true);//设置为禁止自动换行,初始值为false.
jTextArea.setWrapStyleWord (true);
jTextArea.setBackground (Color.white);//文本区背景
jTextArea.setForeground (Color.red);//字体颜色
jTextArea.setFont (new Font ("SansSerif", Font.PLAIN, 14));
jTextArea.setBounds(25, 200, 540, 340);
jbtnsure.setBounds(10, 170, 100, 20);
jbtnreset.setBounds(120, 170, 80, 20);
jbtnprintsql.setBounds(210, 170, 110, 20);
jbtnprintlog.setBounds(330, 170, 120, 20);
contentPane.add(jbtnsure);
contentPane.add(jbtnreset);
contentPane.add(jbtnprintsql);
contentPane.add(jbtnprintlog);
contentPane.add(jTextArea);
}
public static void main(String[] args) {
new OperatorFrame();
}
} 展开
import java.awt.Color;
import java.awt.Container;
import java.awt.Font;
import java.awt.GridLayout;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class Swing extends JFrame{
//为了方便事件驱动,将控件做成全局变量
Object[] stars = new Object[]{"Mysql","sqlserver2000","sqlserver2005","oracle"};
JComboBox jtfSQL = new JComboBox(stars);
JButton jbtnsure = new JButton("确定删除");
JButton jbtnreset = new JButton("重置");
JButton jbtnprintsql = new JButton("打印SQL语句");
JButton jbtnprintlog = new JButton("打印日志信息");
public Swing(){
//设置手动布局
this.setLayout(null);
this.setTitle("维护数据库");
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(100, 100, 600, 600);
//初始化窗体内的组件
initComponent();
//放在最后
this.setVisible(true);
}
void initComponent(){
//得到放组件的内容窗格
Container contentPane = this.getContentPane();
JTextArea jTextArea = new JTextArea(5,10);
jTextArea.setBorder(BorderFactory.createMatteBorder (2,2,2,2, Color.black));
jTextArea.setLineWrap (true);//设置为禁止自动换行,初始值为false.
jTextArea.setWrapStyleWord (true);
jTextArea.setBackground (Color.white);//文本区背景
jTextArea.setForeground (Color.red);//字体颜色
jTextArea.setFont (new Font ("SansSerif", Font.PLAIN, 14));
jTextArea.setBounds(25, 200, 540, 340);
jbtnsure.setBounds(10, 170, 100, 20);
jbtnreset.setBounds(120, 170, 80, 20);
jbtnprintsql.setBounds(210, 170, 110, 20);
jbtnprintlog.setBounds(330, 170, 120, 20);
contentPane.add(jbtnsure);
contentPane.add(jbtnreset);
contentPane.add(jbtnprintsql);
contentPane.add(jbtnprintlog);
contentPane.add(jTextArea);
}
public static void main(String[] args) {
new OperatorFrame();
}
} 展开
2个回答
展开全部
没有看到你用了。而且如果使用了的话要设置为always,这样才一直显示,否则默认是需要时显示。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询