2

我在 gwt 中使用客户端包。在标签上使用客户端包设置图像,打开 pdf 和文本文件,但如何在按钮 ar 按钮中设置图像。谢谢你的回复....

4

1 回答 1

2

如果您使用的是com.google.gwt.user.client.ui.CustomButton ,则在按钮上使用图像很容易。

创建带有图像的按钮:

CustomButton button = new PushButton(new Image(resources.logo1()));

要更改图像,请在 Button 的正面设置一个新图像:

button.getUpFace().setImage(new Image(resources.logo2()));
于 2012-06-26T09:55:36.823 回答