반응형
Question
In Some portion of my java
applet i want cursor to be invisible and
disable. How Is it possible in java
Answer
Best shown by example:
import java.awt.image.*; import javax.swing.*; import java.awt.*; public class Test { public static void main(String[] args) { JFrame frame = new JFrame(); Toolkit tk = Toolkit.getDefaultToolkit(); // Creates a cursor from an invalid image. Cursor invisCursor = tk.createCustomCursor(tk.createImage(""), new Point(), null); frame.setCursor(invisCursor); // Disable events by showing the glasspane which by default is // transparent. frame.getGlassPane().setVisible(true); // remove the titlebar and resize of the frame (you may want this) frame.setUndecorated(true); frame.setSize(100, 100); frame.setVisible(true); } }
반응형
'Software > JAVA' 카테고리의 다른 글
java에서 mysql 사용시 한글 입력이 깨질 경우 (0) | 2014.02.19 |
---|---|
각종 변수간 변환 (0) | 2013.12.08 |
Converting a String to int/double/float (0) | 2013.12.08 |
java Thread 관련 (0) | 2013.12.05 |
FT245BM을 리눅스 기반의 자바프로그램에서 이용하는 방법 (0) | 2013.12.05 |