当 SDK 为 4.5 或更早版本时,我有一个不显示滚动条的 Spark DataGrid。如果我将 SDK 设置为 4.6,它们会正确显示。
有没有人看到这个或知道如何让滚动条正确显示?
这是我使用的 CSS:
s|Scroll {
skinClass: ClassReference("view.skins.CustomScrollerSkin");
}
这基本上是皮肤:
<!--- A horizontal scrollbar that lets you control the portion of data that is displayed
when there is too much data to fit horizontally in a display area.
The Scroller determines whether the horizontal ScrollBar is visible. -->
<fx:Component id="horizontalScrollBarFactory">
<s:HScrollBar visible="false" />
</fx:Component>