恢复内容开始 # 参考链接 : https://blog.csdn.net/wori/article/details/113144580 首先 => 翻译为{ } 然后没有然后 ### 主要基于我工作中常用的几种情况,写个小例子: 这个Java叫实体类,C#不知道叫啥 public class Zo ...
分类:
Windows开发 时间:
2021-02-20 16:02:31
收藏:
0 评论:
0 赞:
0 阅读:
23
来自:https://blog.csdn.net/leichelle/article/details/20364271 最近在用win32写《visual C++经典游戏程序设计》中的扫雷游戏,在写到鼠标点击雷区的时候用到了SetCapture,和ReleaseCapture这对系统函数。 那么为什 ...
分类:
Windows开发 时间:
2021-02-20 16:01:32
收藏:
0 评论:
0 赞:
0 阅读:
27
阅读目录 1、介绍 2、实现 2.1、泛型类 2.2、泛型方法 2.3、泛型接口 2.4、泛型委托 2.5、泛型约束 3、扩展 3.1、协变逆变 3.2、缓存应用 4、参考 返回系列文章目录 开始阅读 1、介绍 在微软的官方文档中这样来描述泛型,泛型将类型参数的概念引入 .NET,这样就可设计具有以 ...
分类:
Windows开发 时间:
2021-02-20 16:00:54
收藏:
0 评论:
0 赞:
0 阅读:
26
1. 客户每次上传前先获取一下当前文件已经被服务器接受了多少 2. 上传时设定偏移量 服务端代码如下: /// <summary> /// 断点续传 服务端保存文件代码 /// </summary> /// <returns></returns> [HttpPost] public bool Upl ...
分类:
Windows开发 时间:
2021-02-20 12:04:29
收藏:
0 评论:
0 赞:
0 阅读:
34
ReadyAPI 产品编号:154134 当前版本:2020 开 发 商:Smartbear 产品类型:独立控件 产品功能:图表 开发平台:Visual Studio 2005 / Visual Studio 2008 其他特性:Web Form / Windows Form / 兼容Sharepo ...
分类:
Windows开发 时间:
2021-02-20 12:02:16
收藏:
0 评论:
0 赞:
0 阅读:
36
1.将Image转换成byte[] 1 public byte[] ImageToByteArray(Image image) 2 { 3 MemoryStream imageStream = new MemoryStream(); 4 image.Save(imageStream, System. ...
分类:
Windows开发 时间:
2021-02-20 11:58:34
收藏:
0 评论:
0 赞:
0 阅读:
29
主要是添加Win32函数 其次是定义键盘按下,抬起的两个固定值。 [DllImport("User32.dll")] public static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); ...
分类:
Windows开发 时间:
2021-02-20 09:47:49
收藏:
0 评论:
0 赞:
0 阅读:
122
C#读写锁ReaderWriterLockSlim的使用 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using Syste ...
分类:
Windows开发 时间:
2021-02-19 17:16:34
收藏:
0 评论:
0 赞:
0 阅读:
45
private string fixHTML(string html) { using (var reader = new SgmlReader()) { reader.DocType = "HTML"; reader.InputStream = new StringReader(html); us ...
分类:
Windows开发 时间:
2021-02-19 17:09:11
收藏:
0 评论:
0 赞:
0 阅读:
25
本文简要介绍了ASP.Net Core Web API中的IActionFilter,对其调用顺序、特性标记、注册方法进行总结。具体环境为:VS2019 + ASP.Net Core 3.1。 1、IActionFilter调用顺序 在调用控制器(Controller)构造函数之后调用Filter; ...
分类:
Windows开发 时间:
2021-02-19 17:06:34
收藏:
0 评论:
0 赞:
0 阅读:
66
一、参考网址 1、win7安装docker 2、 二、实践问题 1. 把DockerToolbox-19.03.1安装到D:\Program Files目录下 2. 用管理员权限点击,提示找不到bash.exe 解决:右击此快捷图标,点击“属性”, 3. 下载“boot2docker.iso”时,一 ...
分类:
Windows开发 时间:
2021-02-19 13:26:21
收藏:
0 评论:
0 赞:
0 阅读:
23
下载DevExpress v20.2完整版 DevExpress WPF 拥有120+个控件和库,将帮助您交付满足甚至超出企业需求的高性能业务应用程序。通过DevExpress WPF能创建有着强大互动功能的XAML基础应用程序,这些应用程序专注于当代客户的需求和构建未来新一代支持触摸的解决方案。 ...
分类:
Windows开发 时间:
2021-02-19 13:23:13
收藏:
0 评论:
0 赞:
0 阅读:
27
<!--1V按钮样式--> <Style TargetType="Button" x:Key="UButtonStyleOneVideo"> <Setter Property="Height" Value="20" /> <Setter Property="Width" Value="20" /> ...
分类:
Windows开发 时间:
2021-02-19 13:22:45
收藏:
0 评论:
0 赞:
0 阅读:
27
procedure TForm1.IdHTTPServerCommandGet(AContext: TIdContext; ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo); var FileStream: T ...
分类:
Windows开发 时间:
2021-02-19 13:19:40
收藏:
0 评论:
0 赞:
0 阅读:
155
windows服务 unit untserverinfo; interface uses Windows, Messages, SysUtils, Classes, Forms, WinSvc, SvcMgr, System.Win.Registry; function ServiceGetStat ...
分类:
Windows开发 时间:
2021-02-19 09:53:42
收藏:
0 评论:
0 赞:
0 阅读:
29
本文参考Prism官方示例 创建Prism项目 将App.xaml中的WPF标准Application替换为PrismApplication,移除StartupUri属性; 将App.xaml.cs中的基类改为PrismApplication; 必须实现PrismApplication中的两个抽象方 ...
分类:
Windows开发 时间:
2021-02-19 09:52:25
收藏:
0 评论:
0 赞:
0 阅读:
20
转自 比较 Windows 10 的不同版本 win10 家庭版、专业版、专业工作站版、企业版的区别比较。 更多信息,可以通过比较完整的列表: Windows10_CommercialEdition_Comparison.pdf 智能安全性 简化更新 灵活管理 提高工作效率 ...
分类:
Windows开发 时间:
2021-02-19 00:33:58
收藏:
0 评论:
0 赞:
0 阅读:
75
c#仿lisp的mapcar函数 /// <summary> /// 仿lisp的mapcar函数 /// </summary> /// <typeparam name="T1">集合</typeparam> /// <typeparam name="T2">集合</typeparam> /// < ...
分类:
Windows开发 时间:
2021-02-19 00:30:25
收藏:
0 评论:
0 赞:
0 阅读:
38
package sample.comomDll; import com.sun.jna.*; import com.sun.jna.ptr.ByteByReference; import com.sun.jna.win32.StdCallLibrary.StdCallCallback; //impo ...
分类:
Windows开发 时间:
2021-02-18 23:25:52
收藏:
0 评论:
0 赞:
0 阅读:
42
安装系统 准备工作 键盘 1.win键 等同于(以下用==替代) Command键 2.alt键 == option键 3.恢复模式 Command+r 或者 win+r ISO镜像 U盘(8G以上) 系统盘 (我用的大白菜装机系统) 安装 打开Boot Camp 助理,安装系统。参考地址(http ...
分类:
Windows开发 时间:
2021-02-18 23:21:39
收藏:
0 评论:
0 赞:
0 阅读:
95