上一页 1 2 3 4 5 6 7 ··· 41 下一页
摘要: 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 阅读(445) 评论(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 阅读(2032) 评论(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 阅读(4684) 评论(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 阅读(4014) 评论(0) 推荐(0)
摘要: 情况 在git bash中输入"git add ."命令时报错"fatal: detected dubious ownership in repository at" 原因 文件夹的所有者和现在的用户不一致 例如:文件夹的所有者是Administrator,而当前用户是myAccount 方法1 右 阅读全文
posted @ 2023-04-05 18:47 Clotho_Lee 阅读(16728) 评论(0) 推荐(5)
摘要: 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 阅读(350) 评论(0) 推荐(0)
摘要: TTL参数 TTL全称Time To Live,该字段指定IP包被路由器丢弃之前允许通过的最大网段数量。TTL是IPv4报头的一个8 bit字段。 * TTL与DNS TTL都是生存时间,前者指ICMP包的转发次数(跳数),后者是域名解析信息在DNS中的存在时间。 tracert命令 该诊断实用程序 阅读全文
posted @ 2023-03-31 16:34 Clotho_Lee 阅读(505) 评论(0) 推荐(0)
摘要: 原因:打开错了 VS有2个属性窗口: 菜单 -> 视图 -> 属性窗口 菜单 -> 视图 -> 其他窗口 -> 属性管理器 属性窗口(Properties Window)才是常用的 属性管理器(Project Properties Manager)是管理编译选项、链接选项、调试选项、构建步骤等 阅读全文
posted @ 2023-03-31 16:25 Clotho_Lee 阅读(1567) 评论(0) 推荐(1)
摘要: 用VS创建.net 6的WinForm,一直停留在"正在加载设计器"的界面 * 其实不止.net 6,也能解决其它非.net framework的WinForm状况 原因 1.删除了本地的安装缓存(VS安装时会把安装文件先下载到本地) 2.关闭了或没打开NuGet 解决方法 1.VS菜单 -> 工具 阅读全文
posted @ 2023-03-31 16:04 Clotho_Lee 阅读(3355) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 41 下一页