QT笔记之MessageBox

static  StandardButton QMessageBox::information 

( QWidget * parent, const QString & title, const QString & text, StandardButtons buttons =  Ok,StandardButton defaultButton = NoButton );

  首先,它是 static的,所以我们能够使用类名直接访问到(怎么看都像废话…);然后
看它那一堆参数,第一个参数parent,说明它的父组件;第二个参数 title,也就是对话
框的标题;第三个参数text,是对话框显示的内容;第四个参数buttons,声明对话框放置
的按钮,默认是只放置一个OK按 钮,这个参数可以使用或运算,例如我们希望有一个Yes
和一个No的按钮,可以使用QMessageBox::Yes | QMessageBox::No,所有的按钮类型可以
在QMessageBox声明的StandarButton枚举中找到;第五个参数 defaultButton就是默认选

中的按钮,默认值是NoButton,也就是哪个按钮都不选中

调用时,QMessageBox::information(。。。。。。。。)。即可


你可能感兴趣的:(qt)