上一页 1 2 3 4 5 6 ··· 41 下一页
摘要: AE (Adobe After Effects):AE是一款专业的视频合成和特效制作软件。它可以用来创建各种动态图形、视觉特效和电影后期处理。 AN (Adobe Animate):AN是一款用于创建交互式动画、游戏和应用程序的软件。它支持HTML5 Canvas、ActionScript 3.0等 阅读全文
posted @ 2023-07-05 15:55 Clotho_Lee 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 一、前期准备 1.下载和编译wxWidgets https://www.cnblogs.com/live41/p/17326345.html 假设wxWidgets根目录放在E:\,即E:\wxWidgets 2.下载PDFium预编译包 https://github.com/bblanchon/p 阅读全文
posted @ 2023-04-20 02:13 Clotho_Lee 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 右键项目 -> Properties -> Debugging -> Working Directory -> 下拉框点击"Edit"或"Browse" -> 选择DLL目录 阅读全文
posted @ 2023-04-20 01:39 Clotho_Lee 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 2023-12-1更新: Chinese - VSCode界面汉化IntelliCode - AI辅助编码EditorConfig - 编辑时格式化Code Runner - 代码运行器Live Server - 自动加载热部署前端页面文件(.html/.js/.ts/.css)Auto Close 阅读全文
posted @ 2023-04-19 02:41 Clotho_Lee 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 有多种原因导致,可选方法如下: 1.右键项目 -> Properties -> C/C++ -> Code Generation -> Runtime Library 有4个选项:MT、MTd、MD、MDd。 第2个字母,T表示静态运行库(.lib)、D表示动态运行库(.dll) 第3个字母,d表示 阅读全文
posted @ 2023-04-18 03:31 Clotho_Lee 阅读(1319) 评论(0) 推荐(0) 编辑
摘要: 一、下载 1.进入官网:https://www.wxwidgets.org/ 2.官网会引导跳到github:https://github.com/wxWidgets/wxWidgets/releases/tag/v3.2.2 3.github有很多个下载链接,有代码(source)和预编译包(bi 阅读全文
posted @ 2023-04-17 16:39 Clotho_Lee 阅读(2339) 评论(0) 推荐(0) 编辑
摘要: VS发布包版本 VC版本 Visual Studio 2003 VC7 Visual Studio 2005 VC8 Visual Studio 2008 VC9 Visual Studio 2010 VC10 Visual Studio 2012 VC11 Visual Studio 2013 V 阅读全文
posted @ 2023-04-13 23:51 Clotho_Lee 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 方法1(推荐) 1.创建WinForm项目 2.引用 -> 管理NuGet程序包 -> 检索"pdfium" -> 安装以下3个包: PdfiumViewer PdfiumViewer.Native.x86.v8-xfa PdfiumViewer.Native.x86_64.v8-xfa 3.打开W 阅读全文
posted @ 2023-04-07 16:06 Clotho_Lee 阅读(2930) 评论(0) 推荐(0) 编辑
摘要: 情况 在git bash中输入"git add ."命令时报错"fatal: detected dubious ownership in repository at" 原因 文件夹的所有者和现在的用户不一致 例如:文件夹的所有者是Administrator,而当前用户是myAccount 方法1 右 阅读全文
posted @ 2023-04-05 18:47 Clotho_Lee 阅读(10887) 评论(0) 推荐(3) 编辑
摘要: Python 3.10版本在2021年10月发布,新增了match-case语法。其实就是对应别的开发语言的switch-case语法。 例子 def http_error(status): match status: case 400: print("Bad request") case 404: 阅读全文
posted @ 2023-03-31 18:12 Clotho_Lee 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 41 下一页