gpt4 book ai didi

css - TreeCheckbox CSS 可见文件夹

转载 作者:行者123 更新时间:2023-11-28 14:48:14 25 4
gpt4 key购买 nike

我正在使用 sephiroth 复选框树,我试图隐藏文件夹和图标,这是我在内联代码中所拥有的,但它似乎不起作用。有什么建议吗?

TreeCheckBox {
backgroundAlpha: 0.0;
folderClosedIcon: ClassReference(null);
folderOpenIcon: ClassReference(null);
defaultLeafIcon: ClassReference(null);
}

最佳答案

这对我有用,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:controls="it.sephiroth.controls.*">
<mx:XML id="wut">
<node label="Mail Box">
<node label="Inbox">
<node label="Marketing"/>
<node label="Product Management"/>
<node label="Personal"/>
</node>
<node label="Outbox">
<node label="Professional"/>
<node label="Personal"/>
</node>
<node label="Spam"/>
<node label="Sent"/>
</node>
</mx:XML>
<mx:Style>
TreeCheckBox {
backgroundAlpha: 0.0;
folderClosedIcon: ClassReference(null);
folderOpenIcon: ClassReference(null);
defaultLeafIcon: ClassReference(null);
}

</mx:Style>
<controls:TreeCheckBox dataProvider="{wut}" width="100%" height="100%" showRoot="true" labelField="@label" />
</mx:Application>

我的猜测是您没有在您的应用程序中正确链接样式文件。如:

<mx:Style source="/correct-path-relative-to-src/my.css" />

关于css - TreeCheckbox CSS 可见文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5006441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com