1. git clone xxx 2. 解决方法 控制面板 》用户账户 》管理你的凭据 》Windows 凭据 ...
分类:
Windows开发 时间:
2021-08-30 03:02:02
收藏:
0 评论:
0 赞:
0 阅读:
5
这个组件是用来 对窗体的布局用的,可搭建一个管理系统的ui框架。 使用例子:https://blog.csdn.net/zzzzzzzert/article/details/80791554 ...
分类:
Windows开发 时间:
2021-08-30 02:55:25
收藏:
0 评论:
0 赞:
0 阅读:
20
一、前言 Windows操作系统的内存有三种属性,分别为:可读、可写、可执行,并且操作系统将每个进程的内存都隔离开来,当进程运行时,创建一个虚拟的内存空间,系统的内存管理器将虚拟内存空间映射到物理内存上,所以每个进程的内存都是等大的。 操作系统给予每个进程申请内存的权利,使用不同的API,申请的内存 ...
分类:
Windows开发 时间:
2021-08-30 02:54:26
收藏:
0 评论:
0 赞:
0 阅读:
11
话不多说,上代码: [DllImport("ntdll.dll", SetLastError = true)] private static extern int NtSetInformationProcess(IntPtr hProcess, int processInformationClass ...
分类:
Windows开发 时间:
2021-08-30 02:53:26
收藏:
0 评论:
0 赞:
0 阅读:
21
interop string exportExcelPath = "export.xlsx"; Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application(); x ...
分类:
Windows开发 时间:
2021-08-30 01:54:32
收藏:
0 评论:
0 赞:
0 阅读:
13
windows快捷键 alt+f4 关闭窗口 Ctrl+c 复制 Ctrl+v 粘贴 Ctrl+x 剪切 Ctrl+a 全选 Ctrl+z 撤销 Ctrl+s 保存 shift+del 永久删除 win+r 运行 win+e 打开我的电脑 Ctrl+shift+esc 任务管理器 alt+tab 切 ...
分类:
Windows开发 时间:
2021-08-30 01:18:21
收藏:
0 评论:
0 赞:
0 阅读:
14
webapi controller 要继承 ApiController 重写权限验证 ,记得使用 System.Web.Http下的AuthorizeAttribute。 webapi默认路由是根据参数来匹配的,不是通过action,如果要增加路由可以在WebApiConfig文件夹下的Regist ...
分类:
Windows开发 时间:
2021-08-30 01:17:27
收藏:
0 评论:
0 赞:
0 阅读:
24
1、沿用上一篇的Asp.Net Core Web API服务,修改Startup.cs,解决跨域问题 public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration ...
分类:
Windows开发 时间:
2021-08-30 01:08:50
收藏:
0 评论:
0 赞:
0 阅读:
11
教程不断更新中:http://www.armbbs.cn/forum.php?mod=viewthread&tid=98429 第31章 emWin6.x的全字库的实现(GB2312编码,SPI Flash方案) 本章节为大家讲解GB2312编码全字库的实现,对于习惯了GB2312编码的用户来说,使 ...
分类:
Windows开发 时间:
2021-08-30 01:07:36
收藏:
0 评论:
0 赞:
0 阅读:
14
ntsd -c q -pn winlogon.exe针对xp,win03蓝屏命令 @echo offtaskkill /im explorer.exe /f echo foolish man hahaa!start c:\windows\explorer.exeecho hahaa! #保存为.ba ...
分类:
Windows开发 时间:
2021-08-30 01:07:27
收藏:
0 评论:
0 赞:
0 阅读:
15
要注册frpc为系统服务,大部分都说用sc命令,如下; sc create FrpService binpath= "D:\Program\frp\frpc.exe -c D:\Program\frp\frpc.ini" type= share start= auto 结果发现服务是创建了,但是启动 ...
分类:
Windows开发 时间:
2021-08-30 01:05:22
收藏:
0 评论:
0 赞:
0 阅读:
17
1. 前言 大家好,我是安果! 上一篇文章,聊到 PC 端的一种自动化方案:WinAppDriver 聊聊 PC 端自动化最佳方案 - WinAppDriver 有小伙伴后台给我留言,说「 pywinauto 」作为 WinAppDriver 的替代方案,也能完美完成 PC 端的自动化 2. 介绍 ...
分类:
Windows开发 时间:
2021-08-30 01:04:15
收藏:
0 评论:
0 赞:
0 阅读:
17
#define TEST //#undef TEST using System; using System.Collections.Generic; using System.IO; using System.Net; using System.Net.Security; using System. ...
分类:
Windows开发 时间:
2021-08-30 01:04:03
收藏:
0 评论:
0 赞:
0 阅读:
20
1.新建一个.NET Standard 的类库项目 2.选择项目属性,在 package 栏目下填写我们的nuget包信息 3.选择我们的项目,点击“Pack" 打包 主要注意的是生成配置需改为Release 4.然后就可以在我们项目 bin\Release 目录下看到我们打包好的 nuget pa ...
分类:
Windows开发 时间:
2021-08-30 00:38:16
收藏:
0 评论:
0 赞:
0 阅读:
32
//这里创建的是负责通信的socket,这个socket 不分 服务器或客户端 public static Socket socketCommunication = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolT ...
分类:
Windows开发 时间:
2021-08-30 00:34:00
收藏:
0 评论:
0 赞:
0 阅读:
27
1、为什么要写Api文档 现在,前后端分离的开发模式已经非常流行,后端开发工程师只负责完成后端接口,前端页面的开发和渲染完全由前端工程师完成。 问题来了,前端工程师怎么知道后端接口的具体定义呢?答案是由后端工程师撰写。 2、写Api文档很头疼吗 答案是一定的,这对后端工程师来说,是额外的工作,编码已 ...
分类:
Windows开发 时间:
2021-08-30 00:27:23
收藏:
0 评论:
0 赞:
0 阅读:
18
一、描述 当装完docker之后,系统提示Windows重新启动,作者就重启系统准备使用docker,但是遇到了以下情况:WSL Microsoft .NET Framework应用程序中发生了未经处理的异常。如果单击“继续”,应用程序将忽略此错误并尝试继续。如果单击“退出”,应用程序将立即关闭。引 ...
分类:
Windows开发 时间:
2021-08-30 00:17:54
收藏:
0 评论:
0 赞:
0 阅读:
45
相信不少网友都发现,win11系统预览版系统默认是开启自动更新的,不少小伙伴在使用中就经常出现自动更新的情况,比较影响体验。那么win11怎么关闭自动更新系统呢?下面小编就教下大家win11关闭系统自动更新的方法。 方法一: 1、首先在开始菜单中找到“设置”打开。 2、然后找到左侧的“windows ...
分类:
Windows开发 时间:
2021-08-29 23:51:32
收藏:
0 评论:
0 赞:
0 阅读:
34
echo 密码 | docker login -u 账号 registry.cn-shenzhen.aliyuncs.com -p 密码 docker pull 镜像 ...
分类:
Windows开发 时间:
2021-08-29 23:51:11
收藏:
0 评论:
0 赞:
0 阅读:
32
工作需要做一个小工具,捡起之前的C# Winform 1、正则替换 string strText="xxxxx"; Regex reg = new Regex(@"\n- \d+ - "); strText = reg.Replace(strText, ""); 2、Json格式化 public s ...
分类:
Windows开发 时间:
2021-08-29 23:12:07
收藏:
0 评论:
0 赞:
0 阅读:
40