实例介绍
哔哩哔哩视频链接:https://www.bilibili.com/video/BV1Bv4y1f71F/ QT5编写适合多平台,可以用6818直接运行 看视频了解功能
【实例截图】
【核心代码】
4744300845385745415.rar
└── 化作尘车载系统资料
├── 化作尘车载系统知识总结.pdf
├── 开发板直接运行文件
│ ├── ljj-jj.lrc
│ ├── ljj-jj.mp3
│ ├── Menu
│ ├── pic
│ │ ├── ljj.jpg
│ │ ├── ps天气图标.psd
│ │ ├── zjl.jpeg
│ │ ├── 中雨.png
│ │ ├── 中雪.png
│ │ ├── 中雾.png
│ │ ├── 台风.png
│ │ ├── 多云.png
│ │ ├── 夜间多云.png
│ │ ├── 夜间晴.png
│ │ ├── 大雨.png
│ │ ├── 大雪.png
│ │ ├── 大雾.png
│ │ ├── 大风.png
│ │ ├── 小雨.png
│ │ ├── 小雪.png
│ │ ├── 小雾.png
│ │ ├── 微风.png
│ │ ├── 扬沙.png
│ │ ├── 晴.png
│ │ ├── 暴雨.png
│ │ ├── 未定义.png
│ │ ├── 沙尘暴.png
│ │ ├── 浮尘.png
│ │ ├── 阴.png
│ │ ├── 阵雨.png
│ │ ├── 阵雪.png
│ │ ├── 雨夹雪.png
│ │ ├── 雷阵雨.png
│ │ ├── 雷阵雨夹冰雹.png
│ │ ├── 雾.png
│ │ └── 雾霾.png
│ ├── QMap
│ ├── QMusicPlayer
│ ├── QVideoPlayer
│ ├── QWeather
│ ├── zjl-yq.lrc
│ ├── zjl-yq.mp3
│ └── 运行Menu启动.txt
├── 源代码
│ └── QT_Vehicle_systems
│ ├── Menu
│ │ ├── build-Menu-Desktop_x86_windows_msys_pe_32bit-Debug
│ │ │ ├── debug
│ │ │ │ ├── main.o
│ │ │ │ ├── mainwindow.o
│ │ │ │ ├── Menu.exe
│ │ │ │ ├── moc_mainwindow.cpp
│ │ │ │ ├── moc_mainwindow.o
│ │ │ │ ├── moc_mypushbutton.cpp
│ │ │ │ ├── moc_mypushbutton.o
│ │ │ │ ├── moc_predefs.h
│ │ │ │ ├── mypushbutton.o
│ │ │ │ ├── qrc_pic.cpp
│ │ │ │ └── qrc_pic.o
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ ├── release
│ │ │ └── ui_mainwindow.h
│ │ └── Menu
│ │ ├── main.cpp
│ │ ├── main.o
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── mainwindow.o
│ │ ├── mainwindow.ui
│ │ ├── Makefile
│ │ ├── Menu
│ │ ├── Menu.pro
│ │ ├── Menu.pro.user
│ │ ├── moc_mainwindow.cpp
│ │ ├── moc_mainwindow.o
│ │ ├── moc_mypushbutton.cpp
│ │ ├── moc_mypushbutton.o
│ │ ├── mypushbutton.cpp
│ │ ├── mypushbutton.h
│ │ ├── mypushbutton.o
│ │ ├── pic
│ │ │ ├── map.jpg
│ │ │ ├── music.jpeg
│ │ │ ├── video.jpeg
│ │ │ └── weather.jpg
│ │ ├── pic.qrc
│ │ ├── qrc_pic.cpp
│ │ ├── qrc_pic.o
│ │ └── ui_mainwindow.h
│ ├── QMap
│ │ ├── build-QMap-Desktop_x86_windows_msys_pe_32bit-Debug
│ │ │ ├── 1.png
│ │ │ ├── debug
│ │ │ │ ├── main.o
│ │ │ │ ├── mainwindow.o
│ │ │ │ ├── moc_mainwindow.cpp
│ │ │ │ ├── moc_mainwindow.o
│ │ │ │ ├── moc_mypushbutton.cpp
│ │ │ │ ├── moc_mypushbutton.o
│ │ │ │ ├── moc_predefs.h
│ │ │ │ ├── mypushbutton.o
│ │ │ │ ├── QMap.exe
│ │ │ │ ├── qrc_pic.cpp
│ │ │ │ └── qrc_pic.o
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ ├── p.info
│ │ │ ├── release
│ │ │ └── ui_mainwindow.h
│ │ └── QMap
│ │ ├── main.cpp
│ │ ├── main.o
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── mainwindow.o
│ │ ├── mainwindow.ui
│ │ ├── Makefile
│ │ ├── moc_mainwindow.cpp
│ │ ├── moc_mainwindow.o
│ │ ├── moc_mypushbutton.cpp
│ │ ├── moc_mypushbutton.o
│ │ ├── mypushbutton.cpp
│ │ ├── mypushbutton.h
│ │ ├── mypushbutton.o
│ │ ├── pic
│ │ │ ├── exit.png
│ │ │ ├── map_menu.jpeg
│ │ │ ├── search.png
│ │ │ ├── zoom_down.png
│ │ │ └── zoom_up.png
│ │ ├── pic.qrc
│ │ ├── QMap
│ │ ├── QMap.pro
│ │ ├── QMap.pro.user
│ │ ├── qrc_pic.cpp
│ │ ├── qrc_pic.o
│ │ └── ui_mainwindow.h
│ ├── QMusicPlayer
│ │ ├── build-QMusicPlayer-Desktop_x86_windows_msys_pe_32bit-Debug
│ │ │ ├── debug
│ │ │ │ ├── main.o
│ │ │ │ ├── mainwindow.o
│ │ │ │ ├── moc_mainwindow.cpp
│ │ │ │ ├── moc_mainwindow.o
│ │ │ │ ├── moc_mypushbutton.cpp
│ │ │ │ ├── moc_mypushbutton.o
│ │ │ │ ├── moc_predefs.h
│ │ │ │ ├── mypushbutton.o
│ │ │ │ ├── QMusicPlayer.exe
│ │ │ │ ├── qrc_pic.cpp
│ │ │ │ └── qrc_pic.o
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ ├── release
│ │ │ └── ui_mainwindow.h
│ │ └── QMusicPlayer
│ │ ├── config.h
│ │ ├── lrc
│ │ │ ├── ljj-jj.lrc
│ │ │ ├── zjl-yq.lrc
│ │ │ └── zjl-yq.mp3
│ │ ├── main.cpp
│ │ ├── main.o
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.cpp.autosave
│ │ ├── mainwindow.h
│ │ ├── mainwindow.o
│ │ ├── mainwindow.ui
│ │ ├── Makefile
│ │ ├── moc_mainwindow.cpp
│ │ ├── moc_mainwindow.o
│ │ ├── moc_mypushbutton.cpp
│ │ ├── moc_mypushbutton.o
│ │ ├── music
│ │ │ ├── ljj-jj.mp3
│ │ │ └── zjl-yq.mp3
│ │ ├── mypushbutton.cpp
│ │ ├── mypushbutton.h
│ │ ├── mypushbutton.o
│ │ ├── pic
│ │ │ ├── exit.png
│ │ │ ├── ljj.jpg
│ │ │ ├── music_menu.jpeg
│ │ │ ├── music_menu.jpg
│ │ │ ├── next.png
│ │ │ ├── openfile.png
│ │ │ ├── pause.png
│ │ │ ├── play.png
│ │ │ ├── prev.png
│ │ │ ├── vol.png
│ │ │ └── zjl.jpeg
│ │ ├── pic.qrc
│ │ ├── QMusicPlayer
│ │ ├── QMusicPlayer.pro
│ │ ├── QMusicPlayer.pro.user
│ │ ├── qrc_pic.cpp
│ │ ├── qrc_pic.o
│ │ └── ui_mainwindow.h
│ ├── QVideoPlayer
│ │ ├── build-QVideoPlayer-Desktop_x86_windows_msys_pe_32bit-Debug
│ │ │ ├── debug
│ │ │ │ ├── main.o
│ │ │ │ ├── mainwindow.o
│ │ │ │ ├── moc_mainwindow.cpp
│ │ │ │ ├── moc_mainwindow.o
│ │ │ │ ├── moc_predefs.h
│ │ │ │ └── QVideoPlayer.exe
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ ├── release
│ │ │ └── ui_mainwindow.h
│ │ └── QVideoPlayer
│ │ ├── config.h
│ │ ├── main.cpp
│ │ ├── main.o
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── mainwindow.o
│ │ ├── mainwindow.ui
│ │ ├── Makefile
│ │ ├── moc_mainwindow.cpp
│ │ ├── moc_mainwindow.o
│ │ ├── moc_mypushbutton.cpp
│ │ ├── moc_mypushbutton.o
│ │ ├── mypushbutton.cpp
│ │ ├── mypushbutton.h
│ │ ├── mypushbutton.h.autosave
│ │ ├── mypushbutton.o
│ │ ├── pic
│ │ │ ├── exit.png
│ │ │ ├── next.png
│ │ │ ├── openfile.png
│ │ │ ├── pause.png
│ │ │ ├── play.png
│ │ │ ├── prev.png
│ │ │ ├── video_menu.jpeg
│ │ │ └── vol.png
│ │ ├── pic.qrc
│ │ ├── qrc_pic.cpp
│ │ ├── qrc_pic.o
│ │ ├── QVideoPlayer
│ │ ├── QVideoPlayer.pro
│ │ ├── QVideoPlayer.pro.user
│ │ └── ui_mainwindow.h
│ └── QWeather
│ ├── build-QWeather-Desktop_x86_windows_msys_pe_32bit-Debug
│ │ ├── debug
│ │ │ ├── main.o
│ │ │ ├── mainwindow.o
│ │ │ ├── moc_mainwindow.cpp
│ │ │ ├── moc_mainwindow.o
│ │ │ ├── moc_mypushbutton.cpp
│ │ │ ├── moc_mypushbutton.o
│ │ │ ├── moc_predefs.h
│ │ │ ├── mypushbutton.o
│ │ │ ├── pic
│ │ │ │ ├── ps天气图标.psd
│ │ │ │ ├── 中雨.png
│ │ │ │ ├── 中雪.png
│ │ │ │ ├── 中雾.png
│ │ │ │ ├── 台风.png
│ │ │ │ ├── 多云.png
│ │ │ │ ├── 夜间多云.png
│ │ │ │ ├── 夜间晴.png
│ │ │ │ ├── 大雨.png
│ │ │ │ ├── 大雪.png
│ │ │ │ ├── 大雾.png
│ │ │ │ ├── 大风.png
│ │ │ │ ├── 小雨.png
│ │ │ │ ├── 小雪.png
│ │ │ │ ├── 小雾.png
│ │ │ │ ├── 微风.png
│ │ │ │ ├── 扬沙.png
│ │ │ │ ├── 晴.png
│ │ │ │ ├── 暴雨.png
│ │ │ │ ├── 未定义.png
│ │ │ │ ├── 沙尘暴.png
│ │ │ │ ├── 浮尘.png
│ │ │ │ ├── 阴.png
│ │ │ │ ├── 阵雨.png
│ │ │ │ ├── 阵雪.png
│ │ │ │ ├── 雨夹雪.png
│ │ │ │ ├── 雷阵雨.png
│ │ │ │ ├── 雷阵雨夹冰雹.png
│ │ │ │ ├── 雾.png
│ │ │ │ └── 雾霾.png
│ │ │ ├── QOnlineWeather.exe
│ │ │ ├── qrc_pic.cpp
│ │ │ ├── qrc_pic.o
│ │ │ ├── QWeather.exe
│ │ │ └── weather.o
│ │ ├── Makefile
│ │ ├── Makefile.Debug
│ │ ├── Makefile.Release
│ │ ├── release
│ │ └── ui_mainwindow.h
│ └── QWeather
│ ├── main.cpp
│ ├── main.o
│ ├── mainwindow.cpp
│ ├── mainwindow.h
│ ├── mainwindow.o
│ ├── mainwindow.ui
│ ├── Makefile
│ ├── moc_mainwindow.cpp
│ ├── moc_mainwindow.o
│ ├── moc_mypushbutton.cpp
│ ├── moc_mypushbutton.o
│ ├── mypushbutton.cpp
│ ├── mypushbutton.h
│ ├── mypushbutton.o
│ ├── pic
│ │ ├── menu.png
│ │ ├── search.png
│ │ └── weather_menu.jpeg
│ ├── pic.qrc
│ ├── qrc_pic.cpp
│ ├── qrc_pic.o
│ ├── QWeather
│ ├── QWeather.pro
│ ├── QWeather.pro.user
│ ├── ui_mainwindow.h
│ ├── weater.h
│ ├── weather.cpp
│ └── weather.o
├── 视频资源.txt
└── 车载系统制作要求.pdf
38 directories, 297 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论