本文介绍了IUP下拉列表中的差距的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

用于Windows的IUP中的下拉列表在最后一个元素之后包含多余的空白.

Dropdown lists in IUP for Windows contain a superfluous gap after the last element if the number of elements is sufficient to warrant a scrollbar (which is five or more).

这是我可以改变的东西吗?

Is this something I can change?

dropdown = DIALOG[TITLE=dropdown.led](
  HBOX[CMARGIN=10x10,CGAP=10](
    LIST[VALUE=3, 1=я, 2=ты, 3=оно, 4=мы, 5=вы, 6=они, DROPDOWN=YES](do_nothing),
    LIST[VALUE=3, 1=ik, 2=je, 3=hij, 4=we, DROPDOWN=YES](do_nothing)
  )
)
  1. 如何在从LED文件加载的IUP对话框中访问GUI元素?
  2. 如何使俄语字母在从LED文件加载的IUP对话框中可见?
  3. IUP下拉列表中的空白(当前)
  1. How do I get access to GUI elements in a IUP dialog loaded from a LED file?
  2. How can I make Russian letters visible in a IUP dialog loaded from a LED file?
  3. A gap in IUP dropdown lists (current)

推荐答案

此行为取决于VISIBLEITEMS属性,默认值为5.

This behavior is dependent on the VISIBLEITEMS attribute which default is 5.

这篇关于IUP下拉列表中的差距的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 05:24