Flex - 图标/图像的上标

发布于 2024-12-09 06:51:29 字数 148 浏览 0 评论 0原文

我正在研究 ActionScript 3.0 并遇到了一个疑问。我们可以通过 itemRenderer 属性在数据网格的单个单元格中放置 2 个图像。

我想将图标显示为单元格本身中存在的某些文本的上标。

这怎么写呢?请帮帮我。

谢谢。

I am working on ActionScript 3.0 and came across a doubt. We can have 2 images in a single cell of datagrid via itemRenderer property.

I want to show an icon as a superscript to some text present in the cell itself.

How can this be written ? Please help me out.

Thanks.

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

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

发布评论

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

评论(1

中性美 2024-12-16 06:51:29

根据问题的标签,我假设您正在使用 Flex 3。在您的自定义项目渲染器中,您需要将 HBoxverticalAlign="top" 结合使用:

<mx:HBox verticalAlign="top">
    <mx:Label text="My label" />
    <mx:Image source="superscript_icon.jpg" width="6" height="6" />
</mx:HBox>

如果我误解了任何内容,请包含您想要的代码示例目前有关于您想要添加图标的位置的详细信息。

I assume you're using Flex 3 based on the question's tag. Within your custom item renderer, you'll need to use an HBox with verticalAlign="top":

<mx:HBox verticalAlign="top">
    <mx:Label text="My label" />
    <mx:Image source="superscript_icon.jpg" width="6" height="6" />
</mx:HBox>

If I've misunderstood anything, please include a code sample for what you currently have and details on where you want the icon added.

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