摘要: Qt设置全局背景 #include <QApplication> #include <QPalette> int main(int argc, char *argv[]) { QApplication app(argc, argv); // 创建一个QPalette对象 QPalette globa 阅读全文
posted @ 2025-01-10 17:03 txwtech 阅读(114) 评论(0) 推荐(0)
摘要: c++ std::string contains实现 #include <iostream> #include <string> bool contains(const std::string& str, const std::string& substr) { return str.find(su 阅读全文
posted @ 2025-01-10 08:05 txwtech 阅读(242) 评论(0) 推荐(0)