aboutdialog.cpp
来自「大学时用c++做的计算器」· C++ 代码 · 共 16 行
CPP
16 行
#include "aboutdialog.h"
AboutDialog::AboutDialog(QWidget* parent)
: QDialog(parent)
{
setupUi(this);
connect(helpPushButton, SIGNAL(clicked()), this, SLOT(helpClicked()));
}
void AboutDialog::helpClicked()
{
emit help();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?