Flex样式-Panel篇

Panel {
   borderStyle: solid;
   borderColor: #ff0000;
   borderAlpha: 0.5;
   borderThickness: 2;
   roundedBottomCorners: true;
   cornerRadius: 10;
   headerHeight: 50;
   backgroundAlpha: 0.5;
   highlightAlphas: 0.4, 0.24;
   headerColors: #cccc00, #cccc00;
   footerColors: #660033, #4217c2;
   backgroundColor: #00ffff;
   dropShadowEnabled: true;
   shadowDistance: 1;
   titleStyleName: "mypanelTitle";
}

.mypanelTitle {
   letterSpacing: 1;
   color: #6600cc;
   textAlign: left;
   fontFamily: Trebuchet MS;
   fontSize: 16;
   fontWeight: bold;
   fontStyle: italic;
   textDecoration: underline;
}

原文地址:https://www.cnblogs.com/hzcya1995/p/13315511.html