Flex中通过设置fontFamily样式在调色板(ColorPicker)控件中使用自定义嵌入字体的例子

之前的例子中并没有专门针对调色板(ColorPicker)做过说明,不过在右上角Search一下的话,还是可以找到很多使用了调色板(ColorPicker)的例子。接下来的例子则演示了Flex中如何通过设置fontFamily样式,在调色板(ColorPicker)控件中使用自定义嵌入字体(下面Demo中点击向下箭头察看嵌入字体)。
让我们先来看一下Demo(可以右键View Source或 点击这里察看源代码 ):
 
下面是完整代码(或 点击这里察看):
Download: main.mxml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  3.         layout="vertical"
  4.         verticalAlign="middle"
  5.         backgroundColor="white">
  6.     <mx:Style>
  7.         @font-face {
  8.             src: local("Base 02");
  9.             fontFamily: Base02Embedded;
  10.         }
  11.     </mx:Style>
  12.     <mx:Script>
  13.         <![CDATA[
  14.             private function uintToHex(value:uint):String {
  15.                 var prefix:String = "000000";
  16.                 var str:String = String(prefix + value.toString(16));
  17.                 return "#" + str.substr(-6).toUpperCase();
  18.             }
  19.         ]]>
  20.     </mx:Script>
  21.     <mx:ApplicationControlBar dock="true">
  22.         <mx:ColorPicker id="colorPicker"
  23.                 fontFamily="Base02Embedded"
  24.                 editable="false" />
  25.         <mx:Label id="lbl"
  26.                 text="{uintToHex(colorPicker.selectedColor)}"
  27.                 fontFamily="_typewriter"
  28.                 fontSize="16" />
  29.     </mx:ApplicationControlBar>
  30. </mx:Application>

你可能感兴趣的:(职场,休闲)