在运行时动态生成 JComponent
无论如何要动态生成 JComponent 像 JTextField、JCombobox 吗?我尝试的是工作..,但只能添加一次,将其声明为全局变量。无论如何喜欢在每次运行时更改变量名称?
got anyways to dynamically generate JComponent like JTextField, JCombobox? What i try is work.., but can only add-on once which's declare as global variable. Got anyway likes changing variable Name during every runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法为动态生成的每个组件分配唯一的名称。
当您定义文本字段时,您需要将它们添加到列表(或其他一些数据结构)中。然后您可以从列表中单独访问文本字段。
You can't assign a uniques name to every component you dynamically generate.
As you define the text fields you need to add them to a List (or some other data structure). Then you can access the textfields individually from the List.