2013-10-28 167 views
1

我有一個org.eclipse.swt.widgets.Text框。如何設置org.eclipse.swt.widgets.Text邊框的顏色

private org.eclipse.swt.widgets.Text textBox = new Text(parent , SWT.BORDER) 

如何設置此文本框的邊框顏色?設置背景可以使用setBackground完成,但我沒有找到任何邊框選項!

我發現這一點: http://www.java-tips.org/other-api-tips-100035/168-eclipse/1570-how-to-add-colored-border-around-the-text-widgets.html
現在我該怎樣通知paintListener? 基本上條件邊界應該變成紅色!

+0

查看http://stackoverflow.com/questions/11522774/draw-outline-border-on-text-component –

回答

0

您只需撥打redraw()當您在乾淨和紅色之間切換時。油漆監聽器將被自動調用。

相關問題