怎样用java制作出如图所示的对话框界面

 我来答
皮皮king1
2014-06-08 · TA获得超过1274个赞
知道小有建树答主
回答量:553
采纳率:0%
帮助的人:357万
展开全部

import javax.swing.*;


import java.awt.*;


public class BoxExample_1 {

public static void main(String[] args) {

WindowBox win = new WindowBox();

win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

}


class WindowBox extends JFrame {

Box baseBox, boxV1, boxV2, confirmBox;

JMenuBar menu;

JMenu option;

JMenuItem newUser,exit;

WindowBox() {

menu = new JMenuBar();

option = new JMenu("菜单选项");

newUser = new JMenuItem("新建用户");

exit = new JMenuItem("退出");

option.add(newUser);

option.addSeparator();

option.add(exit);

menu.add(option);


setJMenuBar(menu);


boxV1 = Box.createVerticalBox();

boxV1.add(new Label("用户名"));

boxV1.add(Box.createVerticalStrut(8));

boxV1.add(new Label("密码"));

boxV2 = Box.createVerticalBox();

boxV2.add(new TextField(12));

boxV2.add(Box.createVerticalStrut(8));

boxV2.add(new TextField(12));

baseBox = Box.createHorizontalBox();

baseBox.add(boxV1);

baseBox.add(Box.createHorizontalStrut(10));

baseBox.add(boxV2);

setLayout(new FlowLayout());

add(baseBox);

confirmBox = Box.createHorizontalBox();

confirmBox.add(new JButton("确认"));

confirmBox.add(new JButton("取消"));

add(confirmBox, BorderLayout.PAGE_END);

setSize(250,170);

setVisible(true);

}

}


个人比较喜欢box布局,整齐点,窗口标题之类的细节自己弄

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式