使用 uibinder 的 Gwt 图像按钮

发布于 2024-12-05 02:54:47 字数 709 浏览 1 评论 0原文

如何使用 uibinder 在 GWT 中创建图像按钮。我当前的代码如下所示:

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
    xmlns:g="urn:import:com.google.gwt.user.client.ui">
    <ui:with type="com.test.client.Resources" field="res"></ui:with>
    <g:HTMLPanel>   
        <g:Image resource="{res.facebook_32}"/>
        <g:PushButton>
            <g:downFace image="{res.facebook_32}"></g:downFace>
            <g:upFace image="{res.facebook_32}"></g:upFace>
        </g:PushButton>
    </g:HTMLPanel>
</ui:UiBinder> 

图像打印正确,因此图像资源正常工作。

How do you create an image button in GWT using the uibinder. My current code looks like:

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
    xmlns:g="urn:import:com.google.gwt.user.client.ui">
    <ui:with type="com.test.client.Resources" field="res"></ui:with>
    <g:HTMLPanel>   
        <g:Image resource="{res.facebook_32}"/>
        <g:PushButton>
            <g:downFace image="{res.facebook_32}"></g:downFace>
            <g:upFace image="{res.facebook_32}"></g:upFace>
        </g:PushButton>
    </g:HTMLPanel>
</ui:UiBinder> 

The image is printed correctly so the image resource works correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱人配狗天长地久 2024-12-12 02:54:47

这里的目标是什么?常规图像可以充当按钮。是你所追求的事件吗?

What is the objective here? A regular image can behave as a button. Is it the events you are after?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文