search

Home  >  Q&A  >  body text

使用eclipsed的WindowBuilder插件拖动创建JAVAGUI,combobox组件创建后无法调用

拖动combobox控件创建了一个下拉菜单。

然后想在源码中通过对一个组件设置监听来调combobox里的值,发现无法调用(调其他组件均可实现调用)

拖combobox组件设置属性后,系统自动生成的代码如下

报错原因如下

求各位大神指点。

大家讲道理大家讲道理2806 days ago826

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-04-18 09:08:19

    Thanks for the invitation! !

    I haven’t written in a long timeswing了,但你的代码错误是因为范型的问题,JComboBoxYou need to specify a content type.

    Although I have never used it JComboBox,但猜测内容也无非是StringInteger之类,应该是取决于你的JComboBoxWhat value do you want to store? For example, if you want to select a number, you can do this:

    JComboBox<Integer> selectOperaor = new JComboBox<Integer>();

    reply
    0
  • Cancelreply