1. 程式人生 > >JTextField邊框樣式控制(Swing重繪輸入框邊框)

JTextField邊框樣式控制(Swing重繪輸入框邊框)

/**
	 * 重繪輸入框邊框
	 * 
	 * @param field
	 */
	public void textSet(JTextField field) {
		field.setBackground(new Color(255, 255, 255));
		field.setPreferredSize(new Dimension(150, 28));
		MatteBorder border = new MatteBorder(0, 0, 2, 0, new Color(192, 192,
				192));
		field.setBorder(border);
	}