QtGui.QComboBox控制元件常用函式

傻呆發表於2015-08-25

感謝朋友支援本部落格,歡迎共同探討交流,由於能力和時間有限,錯誤之處在所難免,歡迎指正! 如果轉載,請保留作者資訊。 部落格地址:http://blog.csdn.net/qq_21398167

原博文地址:http://blog.csdn.net/qq_21398167/article/details/47972825 QtGui.QComboBox控制元件常用函式: .addItem(string) #新增字串項到Item .addItems(list) #新增列表或元組元素到Item .clear() #清除所有Item .clearEditText() #清除編輯框內容 .count() #返回Item數目 .currentIndex() #返回當前選擇索引,從0開始 .currentText() #返回當前選擇內容 .insertItem(index,string) #插入字串項到Item項index後 .insertItems(index,list) #插入列表或元組元素到Item項index後 .insertSeparator(index) #插入分隔符到Item項index後 .itemText(index) #返回Item項index的內容 .removeItem(index) #刪除Item項index .setCurrentIndex(index) #設定Item項index為當前選擇 .setEditable(True) #設定選框可編輯 .setEditText(string) #設定編輯框內容 .setItemText(index,string) #設定Item項index內容為字串值

相關文章