有没有办法在代码中设置GWT按钮的光标样式?

时间:2013-04-26 04:57:54

标签: java gwt

我已经看到了

的一些细节

http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/dom/client/Style.Cursor.html

没有看到任何使用此示例。我已经把css类样式但仍然光标没有获得所需的光标样式。 任何人都可以举个例子。?

2 个答案:

答案 0 :(得分:4)

这可能会有所帮助

button.getElement().getStyle().setCursor(Cursor.POINTER);  

但gwt直接选择css

并将css样式添加到按钮(**preffered**

button.addStyleName(mybuttonStyle);


.mybuttonStyle{
   cursor: pointer;
}

答案 1 :(得分:1)

如果这是一个SmartGWT应用程序,并且您想为SmartGWT小部件设置光标,则可以使用Canvas.setCursor()

IButton button = new IButton("Hover over");
button.setCursor(Cursor.CROSSHAIR);

http://forums.smartclient.com/showthread.php?p=68560