手动触发ComboBox ActionListener事件

时间:2016-05-13 03:01:04

标签: java events combobox

我有这个ComboBox我希望在运行时触发选定的选项,我知道使用button.doClick()触发按钮操作,但我怎样才能在ComboBox中执行此操作行动事件?

这是我的ComboBox事件:

comboBox.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent event) {

        if(filters.isEmpty())
            filters.add(RowFilter.regexFilter(comboBox.getSelectedItem().toString(), 2));
        else
            filters.set(0, RowFilter.regexFilter(comboBox.getSelectedItem().toString(), 2));

        // Apply filters
        sorter.setRowFilter(RowFilter.andFilter(filters));

      /*  comboBox.setSelectedItem("BAR");*/
    }
});

0 个答案:

没有答案