防止下拉列表选项在 SWT 中的 Windows 上滚动
我的 Java SWT 应用程序中的下拉列表之一有 8 个固定选项。当我点击它时,只有 5 个第一个选项可见,我必须向下滚动列表才能查看其余选项。
有什么方法可以强制它使所有选项可见而不必向下滚动?
还有另一个类似的 .NET 应用程序,它具有相同的下拉列表和相同的选项,并且它们都可见,无需向下滚动!
One of the drop down lists in my Java SWT application has 8 fixed options. When I click on it only 5 first options are visible and I have to scroll the list down to view the rest.
Is there any way to force it to make all options visible without having to scroll down?
There is another similar .NET application that has same drop down list with the same options and they all are visible without having to scroll down!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊..显然有一个适用于 Windows 的 org.eclipse.swt.widgets.Combo.setVisibleItemCount(int) 方法。这比我最初想象的要容易。
Ah.. apparently there is a
org.eclipse.swt.widgets.Combo.setVisibleItemCount(int)
method that works on Windows. That was easier then I initially thought.