当前位置: 技术问答>java相关
Re:如何删除下拉列表中的一个项目信息?
来源: 互联网 发布时间:2017-03-13
本文导语: 如果一个下拉列表中的一个项目不需要了, 要怎么删除它 用什么方法? | voidremoveAllItems() //Removes all items from the item list. voidremoveItem(Object anObject) //Removes an item fr...
如果一个下拉列表中的一个项目不需要了, 要怎么删除它 用什么方法?
|
voidremoveAllItems()
//Removes all items from the item list.
voidremoveItem(Object anObject)
//Removes an item from the item list.
voidremoveItemAt(int anIndex)
//Removes the item at anIndex This method works only if the JComboBox uses the default data model
//Removes all items from the item list.
voidremoveItem(Object anObject)
//Removes an item from the item list.
voidremoveItemAt(int anIndex)
//Removes the item at anIndex This method works only if the JComboBox uses the default data model
|
不会吧!
帮你解释一下!
void removeAllItems(){}
//从列表里清除所有,全部项;
void removeItem(Object anObject){}
//从列表里清除一项,默认是当前最后一项;
void removeItemAt(int anIndex) {}
//从列表里清除当前索引指定一项;
帮你解释一下!
void removeAllItems(){}
//从列表里清除所有,全部项;
void removeItem(Object anObject){}
//从列表里清除一项,默认是当前最后一项;
void removeItemAt(int anIndex) {}
//从列表里清除当前索引指定一项;
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。