JAVA面板可以重叠在一起吗?如图所示...
展开全部
这个问题倒还有趣,试了一下。
一.如果两个Panel是完全重叠,可以尝试使用布局:CardLayout。如下:
import java.awt.*;
import java.awt.event.*;
public class TestLayout{
Frame f;
Panel p,p1,p2;
Button btn;
CardLayout cal;
public TestLayout(){
f=new Frame();
p=new Panel();
p1=new Panel();
p1.setBackground(Color.red);
p2=new Panel();
p2.setBackground(Color.green);
btn=new Button("切换");
cal=new CardLayout();
f.setLayout(new BorderLayout());
f.add(btn,BorderLayout.SOUTH);
f.add(p);
p.setLayout(cal);
p.add(p1);
p.add(p2);
f.setSize(300,300);
f.setVisible(true);
//响应关闭
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
//用于在p1和p2之间切换
btn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
cal.previous(p);//或者cal.next(p);可实现在p1,p2之间切换
}
});
}
public static void main(String args[]){
new TestLayout();
}
}
二.部分重叠的情况。用swing的组件来测试,先运行以下程序后,再将程序中://p1.setOpaque(false);这句取消注释后运行。两相对照可得部分重叠的结论。如下:
//TestLayout.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestLayout{
JFrame f;
Container con;
JPanel p1,p2;
public TestLayout(){
f=new JFrame();
con=f.getContentPane();
p1=new JPanel();
p2=new JPanel();
f.setSize(300,300);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
con.setLayout(null);//为实现自定义组件的位置和大小,需设置内容面版的布局为空
p1.setBackground(Color.red);
//p1.setOpaque(false);//设置p1为透明的
p1.setBounds(0,0,300,200);//setBounds(int x,int y,int width,int height)方法中四个参数分别为组件的x,y坐标以及宽width和高height
con.add(p1);
p2.setBackground(Color.green);
p2.setBounds(0,100,300,200);
con.add(p2);
}
public static void main(String args[]){
new TestLayout();
}
}
一.如果两个Panel是完全重叠,可以尝试使用布局:CardLayout。如下:
import java.awt.*;
import java.awt.event.*;
public class TestLayout{
Frame f;
Panel p,p1,p2;
Button btn;
CardLayout cal;
public TestLayout(){
f=new Frame();
p=new Panel();
p1=new Panel();
p1.setBackground(Color.red);
p2=new Panel();
p2.setBackground(Color.green);
btn=new Button("切换");
cal=new CardLayout();
f.setLayout(new BorderLayout());
f.add(btn,BorderLayout.SOUTH);
f.add(p);
p.setLayout(cal);
p.add(p1);
p.add(p2);
f.setSize(300,300);
f.setVisible(true);
//响应关闭
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
//用于在p1和p2之间切换
btn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
cal.previous(p);//或者cal.next(p);可实现在p1,p2之间切换
}
});
}
public static void main(String args[]){
new TestLayout();
}
}
二.部分重叠的情况。用swing的组件来测试,先运行以下程序后,再将程序中://p1.setOpaque(false);这句取消注释后运行。两相对照可得部分重叠的结论。如下:
//TestLayout.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestLayout{
JFrame f;
Container con;
JPanel p1,p2;
public TestLayout(){
f=new JFrame();
con=f.getContentPane();
p1=new JPanel();
p2=new JPanel();
f.setSize(300,300);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
con.setLayout(null);//为实现自定义组件的位置和大小,需设置内容面版的布局为空
p1.setBackground(Color.red);
//p1.setOpaque(false);//设置p1为透明的
p1.setBounds(0,0,300,200);//setBounds(int x,int y,int width,int height)方法中四个参数分别为组件的x,y坐标以及宽width和高height
con.add(p1);
p2.setBackground(Color.green);
p2.setBounds(0,100,300,200);
con.add(p2);
}
public static void main(String args[]){
new TestLayout();
}
}
展开全部
是这样的,你在面板上搞一个和面板一样大的JLabel
然后,通过JFileChooser获得路径,利用这个图片的路径,构建一个ImageIcon
最后,根据这个ImageIcon去给JLabel对象setIcon(ImageIcon对象);
具体地:
1.panel.add(label,BorderLayout.CENTER);
2.ImageIcon icon = new ImageIcon(url);
3.label.setIcon(icon);
下面的代码你把 .JPG改成BMP试试看,O(∩_∩)O~
package com.shlq.sample;
import java.awt.BorderLayout;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class ImagePane extends JPanel
{
JLabel jl = null;
ImageIcon img = null;
public ImagePane()
{
img = new ImageIcon( "E:\\Picture\\1.jpg ");
jl = new JLabel(img);
this.setLayout(new BorderLayout());
this.add(jl, BorderLayout.CENTER);
}
public static void main(String[] args)
{
JFrame test = new JFrame( "Image Pane ");
test.getContentPane().add(new ImagePane());
test.pack();
test.setVisible(true);
test.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
}
然后,通过JFileChooser获得路径,利用这个图片的路径,构建一个ImageIcon
最后,根据这个ImageIcon去给JLabel对象setIcon(ImageIcon对象);
具体地:
1.panel.add(label,BorderLayout.CENTER);
2.ImageIcon icon = new ImageIcon(url);
3.label.setIcon(icon);
下面的代码你把 .JPG改成BMP试试看,O(∩_∩)O~
package com.shlq.sample;
import java.awt.BorderLayout;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class ImagePane extends JPanel
{
JLabel jl = null;
ImageIcon img = null;
public ImagePane()
{
img = new ImageIcon( "E:\\Picture\\1.jpg ");
jl = new JLabel(img);
this.setLayout(new BorderLayout());
this.add(jl, BorderLayout.CENTER);
}
public static void main(String[] args)
{
JFrame test = new JFrame( "Image Pane ");
test.getContentPane().add(new ImagePane());
test.pack();
test.setVisible(true);
test.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-05-09
展开全部
可以
先放一个panel ,把panel的layout设置成null,
在这个panel中按绝对位置放置panel1和panel2
先放一个panel ,把panel的layout设置成null,
在这个panel中按绝对位置放置panel1和panel2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询