托盘Action调用
aboutAction = new QAction(this);
aboutAction->setText("About");
connect(aboutAction, SIGNAL(triggered()), this, SLOT(showAbout()));
显示函数
void CSandWidget::showAbout()
{
QMessageBox::about(this,tr("About the "),
tr("Have a good time!")
);
return;
}