vs+qt學習筆記
1.添加資源檔案和控件圖示
https://blog.csdn.net/lyc_daniel/article/details/8813121
2.滑鼠的主要事件執行個體
https://blog.csdn.net/qq_37978130/article/details/80785037
3.窗體無邊框
https://www.cnblogs.com/xiongxuanwen/p/5384103.html
4.中文亂碼
https://blog.csdn.net/qq_35820350/article/details/82347652 三種方法
https://zhidao.baidu.com/question/175639603975870324.html 全局設定
5.按鈕下拉菜單設計
https://blog.csdn.net/kuangqiu/article/details/74078590
https://blog.csdn.net/u014328976/article/details/46868447
https://www.oschina.net/question/565065_87334 //向上拉伸(未實作)
6.QTable控件的設計
https://www.cnblogs.com/mwl523study/p/5478491.html
https://blog.csdn.net/psujtfc/article/details/43764559
https://blog.csdn.net/fanyun_01/article/details/78341615
https://www.cnblogs.com/zhoug2020/p/3789076.html
7.顯示時間
https://blog.csdn.net/qq_40194498/article/details/79697518
8.菜單的響應事件
https://blog.csdn.net/yao_hou/article/details/80769560
9.窗體調用其它窗體
https://blog.csdn.net/fuhuixin7497/article/details/80592460?utm_source=blogxgwz3 //vs建立qt視窗
https://blog.csdn.net/coldplayplay/article/details/78566151
https://blog.csdn.net/weixin_41991128/article/details/86602385 //主要步驟
遇到qt父界面不斷提不能操作問題:
https://bbs.csdn.net/topics/340243081
https://www.cnblogs.com/huoqs/p/5568413.html
https://zhidao.baidu.com/question/651367301039274365.html
void FatherQtGuiClass::slot()
{
view = new SonQtGuiClass;
view->setWindowModality(Qt::ApplicationModal); //設定父界面不可點選,子界面可以永遠置頂
view->show();
}