庞玉栋个人博客、人生苦短-我用Python

关于 JCombobox

发布时间:8年前热度: 873 ℃评论数:

构造函数 

JComboBox() 
          创建具有默认数据模型的 JComboBox。 
JComboBox(ComboBoxModel aModel) 
          创建一个 JComboBox,其项取自现有的 ComboBoxModel 中。 
JComboBox(Object[] items) 
          创建包含指定数组中的元素的 JComboBox。 
JComboBox(Vector<?> items) 
          创建包含指定 Vector 中的元素的 JComboBox。 

常用方法 
addActionListener(ActionListener l) 
          添加 ActionListener。 
addItem(Object anObject) 
          为项列表添加项。 
addItemListener(ItemListener aListener) 
          添加 ItemListener。 
configureEditor(ComboBoxEditor anEditor, Object anItem) 
          利用指定项初始化编辑器。 
getEditor() 
          返回用于绘制和编辑 JComboBox 字段中所选项的编辑器。 
getItemAt(int index) 
          返回指定索引处的列表项。 
getItemCount() 
          返回列表中的项数。 
getModel() 
          返回 JComboBox 当前使用的数据模型。 
getRenderer() 
          返回用于显示 JComboBox 字段中所选项的渲染器。 
getSelectedIndex() 
          返回列表中与给定项匹配的第一个选项。 
getSelectedItem() 
          返回当前所选项。 
insertItemAt(Object anObject, int index) 
          在项列表中的给定索引处插入项。 
isEditable() 
          如果 JComboBox 可编辑,则返回 true。 
removeAllItems() 
          从项列表中移除所有项。 
removeItem(Object anObject) 
          从项列表中移除项。 
removeItemAt(int anIndex) 
          移除 anIndex 处的项。 
setModel(ComboBoxModel aModel) 
          设置 JComboBox 用于获取项列表的数据模型。 
setRenderer(ListCellRenderer aRenderer) 
          设置渲染器,该渲染器用于绘制列表项和从 JComboBox 字段的列表中选择的项。 
setSelectedIndex(int anIndex) 
          选择索引 anIndex 处的项。 
setSelectedItem(Object anObject) 
          将组合框显示区域中所选项设置为参数中的对象

关于,jcombobox

手机扫码访问