原文参照林大佬的博客WPF 让窗口激活作为前台最上层窗口的方法 我只提供下,我使用的代码 [DllImport("user32.dll")] private static extern IntPtr GetForegroundWindow(); [DllImport("user32.dll")] p ...
最近使用 C# 调用 dll 中的方法,本来允许的好好的,不过因为后面为了兼容不同的文件路径,就在标注上添加了 CharSet = CharSet.Auto, 添加后,方法一调用就报错,提示 “The parameter is incorrect” (该参数不正确)。 既然系统提示参数不正确,那肯定 ...
最近使用 C# 调用 dll 中的 UpdateDriverForPlugAndPlayDevices() 方法去安装驱动,遇到了 “The system cannot find the file specified” 问题, 看着错误提示,是指系统没有找到指定文件,但是我检查硬盘,该文件确实存在, ...
原文:WPF 通过Win32SDK修改窗口样式 使用函数为 SetWindowLong GetWindowLong 注册函数 [DllImport("user32.dll", EntryPoint = "GetWindowLong")] public static extern int GetWin... ...
原文:C# 使用Win32API移动光标至指定位置并模拟鼠标点击 东西不难。 使用的函数那么几个。 本例是我删除淘宝购物记录时写的,所以是两个坐标点来回移动并点击鼠标左键。 using System; using System.Runtime.InteropServices; using Syste... ...
分类:
移动开发 时间:
2020-05-06 01:11:38
阅读次数:
85
原文:WPF 无边框拖动 无边框之后的拖动方法有三种。 我个人是喜欢第一和第三的方法,看个人去需求。 第三种代码比较仓促,有需要者可以立马用,或者稍作整理修改。 对于WIN10 .NET 4.5以上的框架可以使用 WIndowChrome 其次是 通过DragMove方法来控制移动 此方法需要写在事... ...
原文:WPF 使用SetParent嵌套窗口 有点类似与Winform的MDI窗口。 使用函数为SetParent和MoveWindow(经常配合)。 [DllImport("user32.dll", SetLastError = true)] public static extern bool M... ...
原文:C# 根据父窗口的标题和子窗口的类名返回子窗口的句柄 很老的项目中的代码,现在也想不起来为什么要这么写了。 [DllImport("user32.dll")] public static extern IntPtr FindWindow(string lpClassName, string l... ...
using System; using System.ComponentModel; using System.Runtime.InteropServices; using System.Threading; namespace Masuit.Tools.Systems { /// /// 纳秒级计 ...
分类:
其他好文 时间:
2020-05-02 00:18:19
阅读次数:
132
[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] public static extern bool InternetSetCookie(string lpszUrlName, string lbszCoo ...