0

我正在尝试将图像添加为 UiBinder Gwt 中的托管资源,但在“元素我只包含一个子元素”这一行出现错误

如何更改我的代码以克服错误。

这是我的 xml 文件。

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">

 <inherits name="com.google.gwt.resources.Resources" />

<ui:style type = "com.equillore.mcmexternal.client.ui.IndicatorLabel.Style"> 


    @sprite 

    .required
     {

        gwt-image: 'requiredImage';
        font-weight:bold;
        width: 7px;
        height: 14px;
    }
    .labRequired
    {

        color:#2E2E2E;
        font-family: Tahoma, Geneva, sans-serif;
        font-size:8pt;
        font-style:normal;
        font-weight:bold;
    }
</ui:style>


<g:SimplePanel width='120px' height='21px'>
<g:Grid>
    <g:row>
        <g:customCell>
            <g:Label ui:field="label" addStyleNames="{style.labRequired}"/>
        </g:customCell>
        <!--  <g:customCell>
            <g:Label addStyleNames="{style.required}"/> 
        </g:customCell> -->
     </g:row>
</g:Grid>
</g:SimplePanel>

在我的java文件中我添加

public interface myResources extends ClientBundle{
    @Source ("images/required_indicator.gif")
    ImageResource requiredImage();
4

1 回答 1

1

您不能在 external 中混合ui:style和定义。要在 a 中使用,您必须定义您使用的元素。ImageResourceClientBundle@spriteui:styleImageResourceui:image

<ui:image field="requiredImage" src="images/required_indicator.gif" />
于 2012-06-09T12:16:43.713 回答