标题:初学者 关于组件的图片插入问题 如何将插入的图片安放在指定的一个角落呢。
只看楼主
Poppy辉
Rank: 1
来 自:云南曲靖
等 级:新手上路
帖 子:33
专家分:4
注 册:2016-11-5
结帖率:66.67%
 问题点数:0 回复次数:1 
初学者 关于组件的图片插入问题 如何将插入的图片安放在指定的一个角落呢。
其实也就是如何规范的排版。
import java.awt.FlowLayout;

import javax.swing.*;

public class week12 {

    public static void main(String[] args) {
        
        Condition con = new Condition();

    }

}

    class Condition extends JFrame
    {   
        JPanel p1, p2;
        JLabel name, number, photo;
        JTextField adress;
        JTextArea intruduction;
        JRadioButton sex1,sex2;
        JCheckBox b1, b2, b3, b4;
        ButtonGroup bg;
        
        public Condition()
        {
            init();
            setBounds(300,300,500,500);
            setVisible(true);
        }
        
        public void init()
        {   
            setLayout(new FlowLayout());
            p1 = new JPanel();
            name = new JLabel("马云");
            number = new JLabel("41610055");
            photo = new JLabel(new ImageIcon("005.JPG"));
            adress = new JTextField(10);
            intruduction = new JTextArea(15,30);
            sex1 = new JRadioButton("男");
            sex2 = new JRadioButton("女");
            b1 = new JCheckBox("足球");
            b2 = new JCheckBox("音乐");
            b3 = new JCheckBox("舞蹈");
            b4 = new JCheckBox("主持");
            bg = new ButtonGroup();            
            bg.add(b1);
            bg.add(b2);
            bg.add(b3);
            bg.add(b4);
            add(name);
            add(number);
            add(adress);
            add(intruduction);
            add(sex1);
            add(sex2);
            add(b1);
            add(b2);
            add(b3);
            add(b4);
            add(photo);
            getContentPane().add(new JScrollPane(p1));
            
        }
        
    }
搜索更多相关主题的帖子: public number import photo 
2016-11-30 23:27
Poppy辉
Rank: 1
来 自:云南曲靖
等 级:新手上路
帖 子:33
专家分:4
注 册:2016-11-5
得分:0 
回复 楼主 Poppy辉
就是这个图片太大了 如何缩小并移动位置
2016-12-01 10:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471836-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017030 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved