반응형
=================================
=================================
=================================
-참고사이트
http://www.devdaily.com/java/edu/pj/pj_hourglass_cursor/
Assuming that you're working inside of a JFrame, all you have to do to change the shape of the cursor are two lines of code like this:
Cursor hourglassCursor = new Cursor(Cursor.WAIT_CURSOR);
setCursor(hourglassCursor);
To set the cursor back to it's "default" shape, just make this call:
Cursor normalCursor = new Cursor(Cursor.DEFAULT_CURSOR);
setCursor(normalCursor);
jframe, japplet등등에 setCursor(..) 함수를 활용하여 설정해주면 된다.
로딩이나, 버튼 포커스 해줄때 설정해주면 마우스 모습이 바낀다.
관련 모드들.
Constants for the shapes available in the java.awt.Cursor class |
DEFAULT_CURSOR |
=================================
=================================
=================================
반응형
'JAVA > JAVA UI' 카테고리의 다른 글
Visual Editor, jigloo를 대체할 Swing/SWT 플러그인 WindowBuilder (0) | 2014.10.17 |
---|---|
JAVA swing - JFileChooser 관련 (0) | 2012.05.18 |
How to increase JTable cell size ? (jtable 셀사이즈) (0) | 2011.09.21 |
JPopupMenu 팝업메뉴 구성 관련 (0) | 2011.09.16 |
JTabbedPane Component (0) | 2011.09.09 |