我尝试在flex 4.6中使用CSS设置mx.controls.Alert
组件,但该样式不适用于警报。我之前已经成功实现了这一点,但这次我无法解决问题。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="400">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Style>
@namespace flexlib "http://code.google.com/p/flexlib/";
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace components "components.*";
@namespace flexgif "org.gif.flexgif.*";
mx|Alert{
background-color:#FFFFFF;
background-alpha:1;
color:#FFFFFF;
border-color:#223f56;
border-style:solid;
border-thickness:1;
button-style-name:"alertButton";
chromeColor:#223f56;
header-height:30;
drop-shadow-enabled: true;
messageStyleName:"messageStyle";
titleStyleName:"titleStyle";
}
.alertButton{
emphasizedSkin: ClassReference('skins.CustomButtonSkin');
skin: ClassReference('skins.CustomButtonSkin');
buttonHeight: 30;
color: #FFFFFF;
verticalAlign: middle;
horizontalAlign:center;
paddingBottom: 4;
textRollOverColor: #FFFFFF;
fontFamily:MavenPro_R;
/* drop-shadow-enabled:false;
theme-color:#40779f;
chromeColor:#40779f;
color:#FFFFFF;
backgroundColor:#40779f;
verticalAlign:middle;
horizontalAlign:center;
buttonHeight:30;
paddingBottom:5px; */
}
.messageStyle{
fontFamily:MavenPro_R;
font-size :12;
color:#595959;
}
.titleStyle{
backgroundColor:#223f56;
font-size :14;
font-weight:bold;
color:#FFFFFF;
}
mx|Alert, mx|Button {
fontFamily:MavenPro_B;
textFieldClass: ClassReference("mx.core.UIFTETextField");
}
</fx:Style>
<fx:Script>
<![CDATA[
import mx.controls.Alert;
public function showAlert(event:MouseEvent):void{
Alert.show("Hi, I'm a test alert");
}
]]>
</fx:Script>
<mx:Button id="testButton" click="showAlert(event)" label="Alert" x="200" y="200"/>
</mx:Canvas>
这是我在主应用程序中使用的组件。 它在mx:警告时发出警告:&#34; CSS类型选择器在组件中不受支持:&#39; mx.controls.Alert&#39;&#34;
我也尝试过以下链接: Flex Alert.styleName not working for me
但是它给出了一个错误:
1067:mx.styles类型值的隐式强制:CSSStyleDeclaration为不相关类型mx.controls:Alert
在线:
alertCSS = StyleManager.getStyleDeclaration("Alert");
非常感谢任何帮助。 请原谅我可能犯的任何错误,因为我对flex很新。
答案 0 :(得分:1)
您应该在顶级应用程序中定义样式,它是包含s:Application标记的文件。
只需将fx:style块移动到顶级应用程序即可。