上传者: u011062044
|
上传时间: 2022-05-12 18:04:59
|
文件大小: 522KB
|
文件类型: PPTX
16.3 组合框与列表框;组合框也称为选择列表(choice list)或是下拉列表(drop-down list),它包含一个条目列表,用户能从中进行选择。
属性:都是从JComponent等父辈继承来的。
构造方法与一般方法:
JComboBox()
JComboBox(items : Object[])
addItem(item : Object) : void
getItemAt(index : int) : Object //得到指定下标上的条目
getItemCount():int //得到条目总数
getSelectedIndex(): int //得到选定条目的下标
getSelectedItem(): Object //得到选定的条目
setSelectedIndex(index : int) : void // 设置组合框中选中的下标
removeItem(anObject :Object):void //删除条目线性表指定的一个条目
removeItemAt(anIndex : int) : void //删除组合框中指定下标处的条目
addActionListe