在 Flex 4 中向标题窗口添加填充(最好使用外观)?

发布于 2024-10-14 18:12:31 字数 336 浏览 2 评论 0原文

默认情况下,TitleWindows 似乎没有填充。我尝试了“左”、“右”等属性,但它不起作用。实际上我想为我的整个应用程序设置一个默认值,所以我尝试创建一个皮肤,但无论我在皮肤的哪个位置添加“left =“50”',它都不会在左侧创建填充。您可能认为应该将其添加到 id="contentGroup" 的元素中,如此 Adobe Skinning 帮助页面,但这不起作用。

这肯定是几乎每个人都想做的事情吧?

By default TitleWindows seem to have no padding. I tried the properties "left", "right" etc and it doesn't work. Actually I'd like to have a default for my whole app, so I tried creating a skin but no matter where in the skin I add 'left="50"' it just doesn't create padding on the left. You'd think that you should add it to the element with id="contentGroup", as described on this Adobe Skinning help page, but that does not work.

Surely this is something almost everyone wants to do?

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

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

发布评论

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

评论(2

醉酒的小男人 2024-10-21 18:12:31

默认 TitleWindowSkin 中的 contentGroup 位于 VerticalLayout 内,它不遵守顶部/左侧/右侧/底部约束。

您可以通过复制默认的 TitleWindowSkin 并使用宽度/高度为 100% 的 Group 包装 contentGroup 来实现此目的:

...
<s:Group width="100%" height="100%">
    <!--- @copy spark.components.SkinnableContainer#contentGroup -->
    <s:Group id="contentGroup" top="10" left="10" right="10" bottom="10" minWidth="0" minHeight="0" />
</s:Group>
...

The contentGroup in the default TitleWindowSkin is inside a VerticalLayout which does not respect top/left/right/bottom constraints.

You could do this by duplicating the default TitleWindowSkin and wrapping the contentGroup with a Group with width/height of 100%:

...
<s:Group width="100%" height="100%">
    <!--- @copy spark.components.SkinnableContainer#contentGroup -->
    <s:Group id="contentGroup" top="10" left="10" right="10" bottom="10" minWidth="0" minHeight="0" />
</s:Group>
...
儭儭莪哋寶赑 2024-10-21 18:12:31

由于 TitleWindow 扩展了 Panel 组件,因此它不支持基于 HGroupVGroup 的组件的填充属性会。据我所知,没有办法给 TitleWindow 换肤以便自动设置填充属性。

我所做的就是在 TitleWindow 中设置组件的 xy 坐标,以便将它们放置在我想要的位置。

Since the TitleWindow extends the Panel component, it doesn't support the padding properties a HGroup or VGroup based component would. As far as I know, there's no way to skin a TitleWindow so that the padding properties are automatically set.

All I do is set the x and y coordinates of my components within the TitleWindow so that they are laid out where I want them.

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