1. 디자인 아이디어
Flex에는 LinkButton의 배경색을 설정하는 속성이 없으므로 먼저 스타일 메서드를 호출하여 LinkButton의 배경색을 직접 그리는 두 가지 측면에서 시작해야 합니다. ; 두 번째, LinkButton의 배경 이미지를 설정합니다. 여기서는 첫 번째 방법을 설명합니다
2. 디자인 소스 코드
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="initHandler(event)"> <s:layout> <s:BasicLayout/> </s:layout> <fx:Script> <![CDATA[ import mx.events.FlexEvent; /** * 初始化函数 */ protected function initHandler(event:FlexEvent):void { myLinkButton.graphics.beginFill(0x00FF00); myLinkButton.graphics.drawRect(0,0,myLinkButton.width,myLinkButton.height); myLinkButton.graphics.endFill(); } ]]> </fx:Script> <fx:Declarations> <!-- 将非可视元素(例如服务、值对象)放在此处 --> </fx:Declarations> <mx:VBox width="100%"> <mx:LinkButton id="myLinkButton" label="查询" x="100" y="100"/> </mx:VBox> </s:Application>
3. 디자인 결과
더 유연하게 LinkButton의 배경색 설정에 대한 아이디어와 소스 코드가 있으면 PHP 중국어 웹사이트에서 관련 기사를 주목하세요!