swing组合知道这个人是谁啊 韩国歌手
swing组合 时间:2021-05-29 阅读:(
)
用java编写一个登录界面,用SWING组件
import java.awt.Color;
import java.awt.Point;
import java.awt.Toolkit;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JRadioButton;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.ListSelectionModel;
/**
* 一个简单的Swing窗口,输入内容单击“确定”按钮后,在文本域中显示输入的内容。
* 单击“取消”按钮,清空页面内容。
* @author yzg
*
*/
public class Register extends JFrame {
private static final long serialVersionUID = 1L;
private JLabel nameLabel;
private JTextArea context;
private JTextField name;
private JLabel pLabel;
JList speciality;
JLabel mLabel;
String[] data = { "计算机", "英语", "机械", "化工" };
ButtonGroup bg;
JRadioButton male;
JRadioButton female;
JLabel fLabel;
JCheckBox faverite1;
JCheckBox faverite2;
JCheckBox faverite3;
JCheckBox faverite4;
public Register(String title) {
super(title);
this.getContentPane().setLayout(null);
// 下面两行是取得屏幕的高度和宽度
double lx = Toolkit.getDefaultToolkit().getScreenSize().getWidth();
double ly = Toolkit.getDefaultToolkit().getScreenSize().getHeight();
this.setLocation(new Point((int) (lx / 2) - 150, (int) (ly / 2) - 200));// 设定窗口出现位置
this.setSize(340, 440);// 设定窗口大小
}
public void showWin() {
// 确保窗体有一个好的外观装饰
// setDefaultLookAndFeelDecorated(true);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
// 姓名
nameLabel = new JLabel("姓名 :");
nameLabel.setBounds(30, 10, 50, 25);
name = new JTextField();
name.setBounds(80, 10, 120, 20);
name.setBorder(BorderFactory.createLineBorder(Color.BLUE));
name.addKeyListener(new KeyListener() {
public void keyPressed(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
}
public void keyTyped(KeyEvent e) {
if (name.getText().length() > 6) {
name.setText(name.getText().substring(0, 6));
}
}
});
// 专业 组合框
pLabel = new JLabel("专业 :");
pLabel.setBounds(30, 40, 50, 25);
speciality = new JList(data);
speciality.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
speciality.setBounds(80, 40, 80, 85);
speciality.setBorder(BorderFactory.createLineBorder(Color.GREEN));
mLabel = new JLabel("性别 :");
mLabel.setBounds(30, 130, 50, 25);
// 性别 单选框
bg = new ButtonGroup();
male = new JRadioButton("男");
female = new JRadioButton("女");
bg.add(male);
bg.add(female);
male.setBounds(80, 130, 60, 25);
female.setBounds(140, 130, 60, 25);
fLabel = new JLabel("爱好 :");
fLabel.setBounds(30, 160, 50, 25);
// 爱好 复选框
faverite1 = new JCheckBox("音乐");
faverite2 = new JCheckBox("足球");
faverite3 = new JCheckBox("高尔夫");
faverite4 = new JCheckBox("游戏");
faverite1.setBounds(80, 160, 60, 25);
faverite2.setBounds(140, 160, 60, 25);
faverite3.setBounds(200, 160, 65, 25);
faverite4.setBounds(265, 160, 60, 25);
// 内容 文本区域
JLabel conLabel = new JLabel("输入的内容 :");
conLabel.setBounds(30, 250, 90, 25);
context = new JTextArea();
context.setBounds(30, 270, 260, 100);
context.setBorder(BorderFactory.createLineBorder(Color.black));
// 确定按钮
JButton ok = new JButton("确定");
ok.setBounds(50, 190, 60, 25);
ok.addMouseListener(new MouseListener() {
public void mouseClicked(MouseEvent e) {
StringBuffer sb = new StringBuffer();
sb.append(nameLabel.getText()).append(name.getText());
sb.append("
");
int index = speciality.getSelectedIndex();
if (index >= 0) {
sb.append(pLabel.getText()).append(data[index]);
} else {
sb.append(pLabel.getText());
}
sb.append("
");
sb.append(mLabel.getText());
if (male.isSelected()) {
sb.append("男");
}
if (female.isSelected()) {
sb.append("女");
}
sb.append("
");
sb.append(fLabel.getText());
if (faverite1.isSelected()) {
sb.append("音乐 ");
}
if (faverite2.isSelected()) {
sb.append("足球 ");
}
if (faverite3.isSelected()) {
sb.append("高尔夫 ");
}
if (faverite4.isSelected()) {
sb.append("游戏 ");
}
context.setText(sb.toString());
}
public void mouseEntered(MouseEvent e) {
}
public void mouseExited(MouseEvent e) {
}
public void mousePressed(MouseEvent e) {
}
public void mouseReleased(MouseEvent e) {
}
});
// 取消按钮
JButton cancel = new JButton("取消");
cancel.setBounds(120, 190, 60, 25);
cancel.addMouseListener(new MouseListener() {
public void mouseClicked(MouseEvent e) {
name.setText("");
speciality.clearSelection();
if (faverite1.isSelected()) {
faverite1.setSelected(false);
}
if (faverite2.isSelected()) {
faverite2.setSelected(false);
}
if (faverite3.isSelected()) {
faverite3.setSelected(false);
}
if (faverite4.isSelected()) {
faverite4.setSelected(false);
}
context.setText("");
}
public void mouseEntered(MouseEvent e) {
}
public void mouseExited(MouseEvent e) {
}
public void mousePressed(MouseEvent e) {
}
public void mouseReleased(MouseEvent e) {
}
});
this.getContentPane().add(nameLabel);
this.getContentPane().add(name);
this.getContentPane().add(pLabel);
this.getContentPane().add(speciality);
this.getContentPane().add(mLabel);
this.getContentPane().add(male);
this.getContentPane().add(female);
this.getContentPane().add(fLabel);
this.getContentPane().add(faverite1);
this.getContentPane().add(faverite2);
this.getContentPane().add(faverite3);
this.getContentPane().add(faverite4);
this.getContentPane().add(conLabel);
this.getContentPane().add(context);
this.getContentPane().add(ok);
this.getContentPane().add(cancel);
// this.pack();
this.setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args) {
Register reg = new Register("Register");
reg.showWin();
}
}Swing 韩国女子组合 是谁组合?还有什么歌曲?
Swing 《1st Album 》
01) Intro 02) You 03) ???..???..对不起..我爱你.. 04) Broken Heart 05) Raining 06) Again 1 07) Again 2 08) Go Go 09) ?? 执着 10) Everybody 11) Outro 12) You - Ballard Ver. 13) ???..???.. - Ballard Ver. 14) ???..???.. - Radio Edit
Swing《White Chocolate 白色巧克力》
01 White chocolate 白色巧克力
02 Hello
03 ????? 永远
04 Happy birthday韩国男组合有一首歌叫swing
哦,是super junior-M 的,挺好听的,还上过全球中文音乐榜上榜
这是链接/w_19rqy77ipx.html
还有super junior-M的资料/view/1520823.htm?fr=aladdin一个欧美的5个人的乐队,好像缩写是JVB,不确定,反正开头是J
JLS (Jack the Lad Swing) ?
不过是4个人的组合。
JLS“摇摆不定男生”(Jack the Lad Swing),英国男孩团体JLS是2008年的选秀大赛“X Factor”的亚军。
他们的首支单曲《Beat Again》在上榜第一周就实现了开门红,空降冠军。
成为英国UK单曲2009第29周的冠军。
去年12月,JLS组合是第五季The X Factor大赛的亚军,在获得亚军之后,他们并没有与评委、选秀界大鳄西蒙-考维尔(Simon Cowell)的Syco Music签约,而是选择了Epic公司旗下的SME。
今年春天,JLS组合一直在担任英国R&B歌手Lemar的巡演暖场嘉宾。
根据英国排行榜官方的统计数字显示,在上市第一周,这首《Beat Again》的销量达到了10万张,是今年英国唱片市场上市第一周销量最高的单曲,Lady GaGa的《Just Dance》和Pixie Lott的《Mama Do》在上市首周的销量都比不上它。
/view/2670078.html?wtp=tt知道这个人是谁啊 韩国歌手
你好,只知道这个女生是韩国女子组合Swing的成员,这个截图是出自SBS人气歌谣的Swing组合唱的《对不起,我爱你》里面的。
因为网上没有关于Swing组合的详细介绍,所以也不能确认她的名字。
这个组合后来进军中国乐坛,叫做Swing Girls,不过还是在网上找不到详细资料。
ZJI又上新了!商家是原Wordpress圈知名主机商:维翔主机,成立于2011年,2018年9月启用新域名ZJI,提供中国香港、台湾、日本、美国独立服务器(自营/数据中心直营)租用及VDS、虚拟主机空间、域名注册等业务。本次商家新上韩国BGP+CN2线路服务器,国内三网访问速度优秀,适用8折优惠码,优惠后韩国服务器最低每月440元起。韩国一型CPU:Intel 2×E5-2620 十二核二十四线...
官方网站:点击访问酷番云官网活动方案:优惠方案一(限时秒杀专场)有需要海外的可以看看,比较划算29月,建议年付划算,月付续费不同价,这个专区。国内节点可以看看,性能高IO为主, 比较少见。平常一般就100IO 左右。优惠方案二(高防专场)高防专区主要以高防为主,节点有宿迁,绍兴,成都,宁波等,节点挺多,都支持防火墙自助控制。续费同价以下专场。 优惠方案三(精选物理机)西南地区节点比较划算,赠送5...
无忧云怎么样?无忧云值不值得购买?无忧云,无忧云是一家成立于2017年的老牌商家旗下的服务器销售品牌,现由深圳市云上无忧网络科技有限公司运营,是正规持证IDC/ISP/IRCS商家,主要销售国内、中国香港、国外服务器产品,线路有腾讯云国外线路、自营香港CN2线路等,都是中国大陆直连线路,非常适合免备案建站业务需求和各种负载较高的项目,同时国内服务器也有多个BGP以及高防节点。目前,四川雅安机房,4...
swing组合为你推荐
dota启动项steam上的能不能像dota一样设置启动项进国服dota启动项dota2启动选项怎么设置fps查看硬盘大小用开始——运行然后输什么命令可以查看察看硬盘多大?日本名字大全日本动漫人物名字大全虚拟主机安全吗VMware虚拟机和主机相连后,主机安全吗?阿里云联系方式阿里巴巴如何查看买家的联系方式?华为云服务找回手机我的华为手机丢了但是在处于关机状态怎么找回呢那好上海哪里好找工作?海外idc我想做境外IDC 主营VPS服务 我需要什么 境外独服linux比较廉价 刚刚起家希望给个廉价的方案!腾讯云产品kyani产品怎么样
过期域名 如何申请免费域名 jsp主机 绍兴高防 服务器是干什么的 爱奇艺会员免费试用 超级服务器 下载速度测试 服务器防火墙 双线空间 小夜博客 hdroad privatetracker cdn加速 标准机柜 webmin 西部主机 德国代理ip tracert 挂马检测工具 更多