Flex设置LinkButton的背景色

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、设计结果

Flex设置LinkButton的背景色,布布扣,bubuko.com

时间: 2024-10-12 21:51:21

Flex设置LinkButton的背景色的相关文章

Eclipse详细设置护眼背景色和字体颜色并导出

Eclipse详细设置护眼背景色和字体颜色并导出 Eclipse是一款码农们喜闻乐见的集成开发平台,但是其默认的主题和惨白的背景色实在是太刺激眼球了.下面,将给大家详细介绍如何设置成护眼主题的方法,也做个抛砖引玉,希望能有更多的主题出现在Eclipse的大家庭中. 随后,本文将介绍如何将设置好的主题导出保存,用于重装系统或者分享给朋友. 最后,介绍三种笔者用过的,适合Eclipse使用的编程字体作为彩蛋. 工具/原料 Eclipse 设置背景色和文字颜色 1 首先,是设置背景色的方式,打开Ecl

Photoshop脚本 &gt; 设置前景色和背景色

源自:http://coolketang.com/tutorials/menu1lesson8.php 本节将演示如何使用脚本,设置Photoshop的前景色和背景色.首先创建一个空白的脚本文档,并保存在硬盘上某个位置. 并输入脚本代码: var answer = confirm("您需要随机设置前景色和背景色吗?"); [confirm]命令会弹出一个包含[是/否]的确认框,由用户决定是否执行某一个操作.选择的结果[是/否]将保存在[answer]变量里. if(answer)  {

[DevExpress]设置FocusedNode的背景色

关键代码: /// <summary> /// 设置FocusedNode的背景色 /// 说明: /// 在CustomDrawNodeCell事件中使用 /// 示例: /// _curTree.SetFocusedNodeBackColor(Color.Green, Color.PeachPuff, Color.Black, e); /// </summary> /// <param name="tree">TreeList</param

[WinForm][DevExpress]设置TreeListNode的背景色

关键代码: /// <summary> /// 设置节点背景色 /// 在NodeCellStyle事件中使用 /// </summary> /// <param name="tree">TreeList</param> /// <param name="e">GetCustomNodeCellStyleEventArgs</param> /// <param name="bui

iOS 开发之 - iOS6设置UISearchbar的背景色

效果图: ios 6 默认: 修改之后: 代码: if (!IsIOS7) { [[ _searchBar.subviews objectAtIndex : 0 ] removeFromSuperview ]; [ _searchBar setBackgroundColor :[ UIColor clearColor ]]; } mark 为我成为大神做铺垫. iOS 开发之 - iOS6设置UISearchbar的背景色

Eclipse设置护眼背景色

Eclipse默认的主题和惨白的背景色实在是太刺激眼球了,通过设置Eclipse的背景色,来达到保护眼睛的效果. 背景色设置: 1.依次点击Windows -Preference -General -Test Editors,右边出现Test Editors的面板, 面板中有这样一个选项:Appearance color options,其中是各种板块颜色的设置,其中有一项是background color(背景色设置) 2.选中background color,勾掉System Default

WPF 根据绑定值设置DataGrid行背景色

实现这个功能可以使用类型转换器 1建立一个类BGConverter.cs该类需要继承IValueConverter接口,并实现接口的Convert与ConvertBack方法.注意在Class上需要加上一句话, [ValueConversion(typeof(int),typeof(Brushes))] 前一个type是源类型,后一个是目标类型 [ValueConversion(typeof(int),typeof(Brushes))] class BGConverter:IValueConve

iOS设置UITableViewCell的背景色透明和选中颜色的方法

1.设置UITableViewCell的背景色透明方法: cell.backgroundColor=[UIColor clearColor]; 或者设置颜色透明度为0: cell.backgroundColor = [UIColor colorWithWhite:0.0f alpha:0.0f]; 2.设置UITableViewCell的选中颜色的方法:     UIView *view = [[UIView alloc]init];     view.backgroundColor=[UICo

Eclipse 设置护眼背景色

Eclipse 设置护眼背景色 1.设置字体大小 Window --> Preferences --> General --> Apprearance --> Colors and Fonts --> Text Font --> "Edit" 字体:Consolas 字形:常规 大小:11 修改完后,点击“确认” --> "Apply" 即可生效. 2.设置编辑界面背景色(护眼色) Window --> Prefere