上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: js代码报错应为表达式 ts(1109) 原因: vscode自身语法检查有问题 解决方案: 在设置里面加上 “javascript.validate.enable”: false 禁用默认的 js 验证,之后可用第三方工具比如 eslint 或者 tslint 来进行静态检查。 1.点击左下角的设 阅读全文
posted @ 2022-04-19 22:50 86727515 阅读(3672) 评论(0) 推荐(1) 编辑
摘要: 1.vetur(vue文件基本语法的高亮插件) 2.eslin(智能错误检测插件) 3.Auto Close Tag(自动闭合HTML/XML标签) 4.Auto Rename Tag(自动完成另一侧标签的同步修改) 5.Debugger for Chrome(映射vscode上的断点到chrome 阅读全文
posted @ 2022-04-17 15:21 86727515 阅读(2103) 评论(0) 推荐(0) 编辑
摘要: 需要外挂一个程序,用于监控另一个程序运行状态,一旦检测到另一程序关闭,就触发一个事件做其他处理。 using System.Diagnostics;//引入Process 类 public void Monitor() { Process[] MyProcesses = Process.GetPro 阅读全文
posted @ 2020-07-14 17:01 86727515 阅读(491) 评论(0) 推荐(0) 编辑
摘要: SplashScreen类为WPF应用程序提供启动屏幕。 方法一:设置图片属性 1. 添加启动图片到项目中 2. 设置图片属性的Build Action为SplashScreen 方法二:编写代码 1. 在App.xaml.cs中重写OnStartUp方法: using System; using 阅读全文
posted @ 2020-05-19 19:42 86727515 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 方法:如果是在Windows Server 2012本地控制台下,直接按Win(键盘上的微软徽标键)+R,输入:rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0回车后,勾选所需要的桌面图标的名称,确定即可。 阅读全文
posted @ 2020-04-03 09:39 86727515 阅读(12475) 评论(0) 推荐(0) 编辑
摘要: <script> $(function(){ /*公共部分:登录弹框*/ $("#login_box").load("../../template/login/login.html",function(){ var sc = document.createElement("script"); sc. 阅读全文
posted @ 2020-03-19 09:40 86727515 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: --- 使用字符串拼接id,title SELECT *, before = ( SELECT TOP 1 (convert(varchar(36),ContentId)+'|'+Title) as aa FROM Cms_Content WHERE CreateDate > ( SELECT CreateDate FROM Cms_Content WHERE ContentId... 阅读全文
posted @ 2019-09-24 14:55 86727515 阅读(742) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-09-11 17:10 86727515 阅读(1740) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace WindowsAPI { class CSharp_Win32Api { #region Us... 阅读全文
posted @ 2019-08-14 11:35 86727515 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 程序在32位操作系统上运行正常,在64位操作系统上运行读卡功能提示”试图加载格式不正确“。 点击项目属性,把目标平台Any CPU 设置为X86 阅读全文
posted @ 2019-08-14 10:10 86727515 阅读(452) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页