Flex 4 的ComboBox弹出的下拉框滚动条由于数据过多而导致thumb太小不易操作,暂可如下设置:

代码
<s:ComboBox id = "startPage"
width
="70"
dataProvider
= "{_model.resExportStartEndPage}"
labelField
="label"
selectedIndex
= "0"
change
= "onStartPageChange(event)">
<s:open>
<![CDATA[
(startPage.scroller.getChildAt(0) as ScrollerSkin).verticalScrollBar.thumb.minHeight = 20;
]]>
</s:open>
</s:ComboBox>

 

相关文章:

  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2021-07-29
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
  • 2021-09-11
猜你喜欢
  • 2022-02-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案