我试图动态编写CSS样式表,但Flex 4要求您在样式标记中声明名称空间。
如果我有Spark Button或MX Button类或类实例,我将如何获得该按钮的命名空间?
到目前为止,我已经尝试过这个:
var className:Object = getQualifiedClassName(myButton);
var ButtonClass:Object = ApplicationDomain.currentDomain.getDefinition(className);
var button:Object = new ButtonClass();
有了这些信息,我可以写下:
<fx:Style>
myButton {
color: red;
}
</fx:Style>
我需要创建这个:
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
s|Button {
color: red;
}
</fx:Style>
我希望能够在运行时获取此信息,但设计时间也可以接受。
答案 0 :(得分:0)
它的格式与MXML代码中的命名空间相同。即,如果com.xyzzy.components中有组件,则MXML名称空间类似于
xmlns:components="com.xyzzy.components.*"
CSS名称空间就像
@namespace components "com.xyzzy.components.*";
components|myButton {...}
答案 1 :(得分:0)
看起来我无法在运行时获取它,但我可以从SDK目录中获取XML文件并创建类及其命名空间的表。
在$ FlashBuilder / sdks / 4.6.0 / frameworks / flex-config.xml中,有一个名为namespaces的节点,它包含命名空间的URI,然后是对包含该命名空间中的类列表的XML文件的引用。
<!-- Specify a URI to associate with a manifest of components for use as MXML -->
<!-- elements. -->
<namespace>
<uri>http://ns.adobe.com/mxml/2009</uri>
<manifest>mxml-2009-manifest.xml</manifest>
</namespace>
<namespace>
<uri>library://ns.adobe.com/flex/spark</uri>
<manifest>spark-manifest.xml</manifest>
</namespace>
<namespace>
<uri>library://ns.adobe.com/flex/mx</uri>
<manifest>mx-manifest.xml</manifest>
</namespace>
<namespace>
<uri>http://www.adobe.com/2006/mxml</uri>
<manifest>mxml-manifest.xml</manifest>
</namespace>
<namespace>
<uri>http://flex.apache.org/ns</uri>
<manifest>apache-manifest.xml</manifest>
</namespace>
<namespace>
<uri>http://flex.apache.org/experimental/ns</uri>
<manifest>experimental-manifest.xml</manifest>
</namespace>
</namespaces>
我可以使用该信息和MXML文档为每个节点添加必要的命名空间。