如何创建多个相关的 JCombobox?
我想创建三个 JCombobox 并将它们链接在一起。例如,在这张图片中:
当选择“大学”时,学院组合框应仅显示所选大学的学院。同样,“部门:”标签旁边应仅显示所选学院的院系。
I want to create three JCombobox
es and link them together. For example, in this picture:
when a selection is made for "university," the college combobox should show only colleges of the selected university. Similarly, only departments of the selected college should be shown next to the "Department:" label.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以扩展此
ComboTest
示例中所示的方法。You might be able to extend the approach shown in this
ComboTest
example.