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