10 2019 档案
摘要:如果成员变量在初始化列表中, 就会执行该变量类型的拷贝构造函数. 如果成员变量没有在初始化列表中, 就会执行该变量类型的缺省构造函数.
阅读全文
摘要:https://doc.qt.io/archives/qt-4.8/stylesheet-examples.html //下面是设置垂直滚动条的样例 QString strStyle = QString(" \ //设置整体的颜色 QSlider\ {\ background-color: %2;\
阅读全文
摘要:1.先有本地库,后有远程库的时候,如何关联远程库: 要关联一个远程库,使用命令git remote add origin git@server-name:path/repo-name.git; 关联后, git pull origin master 拉取远程仓库并合并到本地仓库 使用命令git pu
阅读全文
摘要:setStyleSheet( "QProgressBar{border:1px solid #FFFFFF;" "height:30;" "background:grey;" "text-align:right;" "color:rgb(255,255,255);" "border-radius:0px;}" "QProgressBar::chunk{" "border-radius:5px;"
阅读全文