Flex中如何通过设置toolTipField属性在ButtonBar控件中设定自定义tool tip的例子

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:Array id="arr">
  7.         <mx:Object label="Accordion"
  8.                 toolTip="Le Accordion"
  9.                 icon="@Embed('assets/Accordion.png')" />
  10.         <mx:Object label="ApplicationControlBar"
  11.                 toolTip="Le ApplicationControlBar"
  12.                 icon="@Embed('assets/ApplicationControlBar.png')" />
  13.         <mx:Object label="Box"
  14.                 toolTip="Le Box"
  15.                 icon="@Embed('assets/Box.png')" />
  16.         <mx:Object label="Canvas"
  17.                 toolTip="Le Canvas"
  18.                 icon="@Embed('assets/Canvas.png')" />
  19.         <mx:Object label="ControlBar"
  20.                 toolTip="Le ControlBar"
  21.                 icon="@Embed('assets/ControlBar.png')" />
  22.     </mx:Array>
  23.     <mx:ButtonBar id="buttonBar"
  24.             dataProvider="{arr}"
  25.             labelField="label"
  26.             toolTipField="toolTip"
  27.             iconField="icon"
  28.             height="32" />
  29. </mx:Application>

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