我正在尝试在 flex 4 中为我的 fxg 形状 (shapes:munch2 id="paper") 的边缘添加一个粗边框来表示出血区域。
请任何人都可以提出一种方法来做到这一点,我需要用可变宽度来做,而不是在我绘制 fxg 时设置它
谢谢大卫
<?xml version="1.0" encoding="utf-8"?>
<s:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:shapes="fxgGraphics.shapes.*"
width="100%" height="100%">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace shapes "fxgGraphics.shapes.*";
#paper {
border: 3px solid #ff6600;
}
</fx:Style>
<shapes:munch2 id="paper" width="100%" height="100%" horizontalCenter="0" verticalCenter="0" />
</s:Module>