对于我的一生,我无法让样式表工作......与命名空间和我设置它们的方式有关。所以这是我的代码:
<mx:Style>
@namespace mx "library://ns.adobe.com/flex/halo";
mx|DataGrid {
headerColors: #0066cc, #00ffff;
borderThickness: 7;
borderColor: #00ff33;
}
</mx:Style>
<mx:DataGrid
styleName="myGridStyle"
wordWrap="true"
id="people"
width="500"
height="350"
dataProvider="{dataArr}"
editable = "false"
itemClick="itemClickEvent(event);" sortableColumns="true"
rollOverColor="0xffffff"
>
我在这里做错了什么?我已经尝试了许多不同的方法,并且在我完成的教程中似乎对其他人有用。