码迷,mamicode.com
首页 > 编程语言 > 详细

Java Swing界面编程(18)---单行文本输入组件:JTextField

时间:2014-06-03 06:22:28      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   java   a   

以下的程序与上一例有一点区别,仔细对比不难发现其中的不同之处。

package com.beyole.util;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;

public class test17 {
	public static void main(String[] args) {
		JFrame frame = new JFrame("Crystal");
		JTextField nameField = new JTextField(30);
		JTextField location = new JTextField("beyole", 10);
		JLabel name = new JLabel("输入姓名");
		JLabel locat = new JLabel("所属单位");
		location.setEnabled(false);
		name.setBounds(10, 10, 100, 20);
		locat.setBounds(10, 40, 100, 20);
		nameField.setBounds(80, 10, 90, 20);
		location.setBounds(80, 40, 50, 20);
		frame.setLayout(null);
		frame.add(locat);
		frame.add(name);
		frame.add(location);
		frame.add(nameField);
		frame.setSize(300, 100);
		frame.setLocation(300, 200);
		frame.setVisible(true);
	}
}

程序截图:bubuko.com,布布扣

Java Swing界面编程(18)---单行文本输入组件:JTextField,布布扣,bubuko.com

Java Swing界面编程(18)---单行文本输入组件:JTextField

标签:c   class   blog   code   java   a   

原文地址:http://blog.csdn.net/xuejiawei123/article/details/27565407

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!