QComboBox使用方法,QComboBox详解

来源:互联网 发布:成都网络 编辑:程序博客网 时间:2024/05/16 18:50

fromComboBox = QComboBox() 添加一个 combobox

fromComboBox.addItem(rates) 添加一个下拉选项

fromComboBox.addItems(["%d years" % x for x in range(2, 26)]) 从序列中添加

fromComboBox.setMaxVisibleItems(10) #设置最大显示下列项 超过要使用滚动条拖拉

fromComboBox.setMaxCount(5) #设置最大下拉项 超过将不显示

fromComboBox.setInsertPolicy(QComboBox.InsertAfterCurrent) #设置插入方式

插入方式有:NoInsert,InsertAtTop,InsertAtCurrent,InsertAtBottom,InsertAfterCurrent

InsertBeforeCurrent,InsertAlphabetically

字面意思都好理解 最后一个是按字母表顺序插入

QComboBox 发出一个currentIndexChanged(int) 的信号.

QComboBox 得到当前项 currentIndex() + 1 #QComboBox 默认的currentIndex为 -1

QComboBox.findText('dsfds') #返回 内容为dsfds的索引

QComboBox 得到当前项文本内容     currentText()

fromSpinBox = QDoubleSpinBox()
fromSpinBox.setRange(0.01, 10000000.00)

fromSpinBox.setSuffix(" %d") #设置后缀 如显示 10.0%d

fromSpinBox.setPrefix('#d') #设置前缀
fromSpinBox.setValue(1.00) 设置值

QDoubleSpinBox 发出 valueChanged(double) 信号 有setValue(double)插槽

QComboxBox可以建立下拉選單,以供使用者選取項目,以下直接看個簡單的示範,程式中包括下拉選單,選擇選項之後會改變QLabel的文字內容:


[cpp] view plaincopyprint?
  1. #include <QApplication>  
  2. #include <QWidget>  
  3. #include <QLabel>  
  4. #include <QComboBox>  
  5. #include <QVBoxLayout>  
  6. #include <QIcon>  
  7.   
  8. int main(int argc, char *argv[]) {  
  9. QApplication app(argc, argv);  
  10.   
  11. QWidget *window = new QWidget;  
  12. window->setWindowTitle("QComboBox");  
  13. window->resize(300, 200);  
  14.   
  15. QComboBox *combo = new QComboBox;  
  16. combo->setEditable(true);  
  17. combo->insertItem(0, QIcon( "caterpillar_head.jpg" ), "caterpillar");  
  18. combo->insertItem(1, QIcon( "momor_head.jpg" ), "momor");  
  19. combo->insertItem(2, QIcon( "bush_head.jpg" ), "bush");  
  20. combo->insertItem(3, QIcon( "bee_head.jpg" ), "bee");   
  21.   
  22. QLabel *label = new QLabel("QComboBox");  
  23.   
  24. QVBoxLayout *layout = new QVBoxLayout;  
  25. layout->addWidget(combo);  
  26. layout->addWidget(label);  
  27.   
  28. QObject::connect(combo, SIGNAL(activated(const QString &)),  
  29. label, SLOT(setText(const QString &)));  
  30.   
  31. window->setLayout(layout);  
  32. window->show();  
  33.   
  34. return app.exec();  
  35. }  

QComboBox的setEditable()方法可設定下拉選單的選項是否可編輯,使用insertItem()插入選項 時,可以使用QIcon設定圖示,當您選擇下拉選單的某個項目時,會發出activated()的Signal,QString的部份即為選項文字,這邊 將之連接至QLabel的setText(),以改變QLabel的文字,一個程式執行的畫面如下


参考:http://hi.baidu.com/lujizhen/blog/item/c061885cad0a385ffbf2c0ff.html

0 0