04 2023 档案

摘要:一、前期准备 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 阅读(256) 评论(0) 推荐(0)
摘要:右键项目 -> Properties -> Debugging -> Working Directory -> 下拉框点击"Edit"或"Browse" -> 选择DLL目录 阅读全文
posted @ 2023-04-20 01:39 Clotho_Lee 阅读(187) 评论(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 阅读(446) 评论(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 阅读(2035) 评论(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 阅读(4690) 评论(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 阅读(243) 评论(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 阅读(4016) 评论(0) 推荐(0)
摘要:情况 在git bash中输入"git add ."命令时报错"fatal: detected dubious ownership in repository at" 原因 文件夹的所有者和现在的用户不一致 例如:文件夹的所有者是Administrator,而当前用户是myAccount 方法1 右 阅读全文
posted @ 2023-04-05 18:47 Clotho_Lee 阅读(16744) 评论(0) 推荐(5)