java JScrollPane的问题 20
importjava.awt.*;importjavax.swing.*;classMyScrollPaneextendsJFrame{publicMyScrollPan...
import java.awt.*;
import javax.swing.*;
class MyScrollPane extends JFrame{
public MyScrollPane(){
setSize(400,400);
setLocation(300,300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//JPanel panel=new JPanel();
Container c=getContentPane();
JTextArea textArea=new JTextArea(20,50);
JScrollPane sp=new JScrollPane(textArea);
c.add(sp);
}
}
public class JScrollPane {
public static void main(String args[]){
MyScrollPane msp=new MyScrollPane();
msp.setVisible(true);
}
}
问题 :JTextArea产生的对象 不能放入JScrollPane么 还有 程序中的c.add(sp)为什么会提示错误呢 展开
import javax.swing.*;
class MyScrollPane extends JFrame{
public MyScrollPane(){
setSize(400,400);
setLocation(300,300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//JPanel panel=new JPanel();
Container c=getContentPane();
JTextArea textArea=new JTextArea(20,50);
JScrollPane sp=new JScrollPane(textArea);
c.add(sp);
}
}
public class JScrollPane {
public static void main(String args[]){
MyScrollPane msp=new MyScrollPane();
msp.setVisible(true);
}
}
问题 :JTextArea产生的对象 不能放入JScrollPane么 还有 程序中的c.add(sp)为什么会提示错误呢 展开
1个回答
展开全部
import java.awt.*;
import javax.swing.*;
class MyScrollPane extends JFrame{
public MyScrollPane(){
super();
setSize(400,400);
setLocation(300,300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//JPanel panel=new JPanel();
Container c=getContentPane();
JTextArea textArea=new JTextArea(20,50);
JScrollPane sp=new JScrollPane(textArea);
c.add(sp);
}
public static void main(String args[]){
MyScrollPane msp=new MyScrollPane();
msp.setVisible(true);
}
}
import javax.swing.*;
class MyScrollPane extends JFrame{
public MyScrollPane(){
super();
setSize(400,400);
setLocation(300,300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//JPanel panel=new JPanel();
Container c=getContentPane();
JTextArea textArea=new JTextArea(20,50);
JScrollPane sp=new JScrollPane(textArea);
c.add(sp);
}
public static void main(String args[]){
MyScrollPane msp=new MyScrollPane();
msp.setVisible(true);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询