3、按“ESC”键撤出,点一下“设定”选择项。
4、点一下“控制板”选择项。
5、最终将“掩藏控制板鼠标光标”前边的滚动按键开关开启就可以。
最终祝诸位游戏玩家在游戏里面玩的开心
希望这段代码对你有用1.自定义个类扩展Cursor,重写Cursor的方法:
class MyCursor extends Cursor {
public MyCursor(int n) {
super(n)
}
static public Cursor getSystemCustomCursor(final String name)
throws AWTException, HeadlessException {
Toolkit toolkit = Toolkit.getDefaultToolkit()
Image image = toolkit.getImage(name)
return toolkit.createCustomCursor(
image, new Point(0, 0), "myCursor")
}
}
2.在你的程序中:
try {
String ico = "D:\\myCursor.gif"//你图标的位置
this.setCursor(MyCursor.getSystemCustomCursor(ico))
}catch(Exception ae) {
}
-------------------------------------------------------------------
在你的基础上改成下面这个样子就可以了
import javax.swing.ImageIcon
import javax.swing.JFrame
import java.awt.*
public class test extends JFrame {
public test() {
try {
this.getContentPane().setCursor(getMyCursor())
} catch (Exception e) {
}
this.setSize(640, 500)// 窗口大小为640*500
this.setVisible(true)// 窗口可见
setDefaultCloseOperation(EXIT_ON_CLOSE)
}
public static void main(String[] args) {
test m = new test()
}
public Cursor getMyCursor(){
Image img = new ImageIcon(test.class.getResource("arrow40.cur")).getImage()
return this.getToolkit().createCustomCursor(img,new Point(16,16),"mycursor")
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)