删除 Flex 中面板的边框

发布于 2024-12-03 12:59:17 字数 284 浏览 2 评论 0原文

有没有办法删除 mx:Panel 的左+右+下边框?

基本上我想要正确的用户界面而不是左侧的用户界面(检查屏幕截图)

在此处输入图像描述

我知道默认的spark Panel能够这样做,但我只需要使用Flex 3。

这是我已经尝试过的:

  • padding(似乎只改变子项)
  • borderStyle = none正在删除标题的颜色

Is there a way to remove the left+right+bottom border of a mx:Panel?

basically I want to have the right UI instead of the left one ( check the screenshot )

enter image description here

I know that the default spark Panel is able to do so, but I just need to use Flex 3.

Here is what I tried already :

  • padding (seems only changing the children)
  • borderStyle = none is removing the color of the header

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

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

发布评论

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

评论(1

妄想挽回 2024-12-10 12:59:18

为您的面板指定以下样式:

borderThicknessLeft: 0;
borderThicknessTop: 0;
borderThicknessBottom: 0;
borderThicknessRight: 0;

Flex Style Explorer 非常有用当你坚持风格时。

Specify the following styles for your panel:

borderThicknessLeft: 0;
borderThicknessTop: 0;
borderThicknessBottom: 0;
borderThicknessRight: 0;

There's quite useful Flex Style Explorer when you stucked with styles.

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