设置控制台标题 禁用关闭按钮 关闭快速编辑模式 关闭插入模式 设置控制台标题、禁用关闭按钮 #region 设置控制台标题 禁用关闭按钮 [DllImport("user32.dll", EntryPoint = "FindWindow")] extern static IntPtr FindWin ...
实现效果: 知识运用: API函数SHGetFileInfo //获取包含在可执行文件或Dll中的图标数或图标资源 [DllImport("shell32.dll", EntryPoint = "SHGetFileInfo")] public static extern IntPtr SHGetFi ...
分类:
其他好文 时间:
2019-01-06 23:03:15
阅读次数:
330
实现效果: 知识运用: 系统API函数GetShortPathName [DllImport("Kernel32.dll")] private static extern Int16 GetShortPathName(string IpszLongPath,StringBuilder IpszSho ...
分类:
其他好文 时间:
2019-01-05 00:54:51
阅读次数:
344
原文:WPF 获得当前输入法语言区域 本文告诉大家如何获得 WPF 输入法的语言区域 需要使用 user32 的方法,很简单,请看下面 [DllImport("user32.dll")] static extern IntPtr GetForegroundWindow(); [DllImport("... ...
分类:
编程语言 时间:
2019-01-04 12:20:46
阅读次数:
354
实现效果: 知识运用: 系统API函数SHEmptyRecycleBin //清空回收站中的文件 [DllImport("shell32.dll")] private static extern int SHEmptyRecycleBin(IntPtr handle,string root,int ...
分类:
其他好文 时间:
2019-01-04 01:18:55
阅读次数:
217
1 [DllImport("kernel32.dll"),EntryPoint = "SetProcessWorkingSetSize"] 2 public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize,... ...
工作过程中中,把写内容过程中重要的内容段备份一下,如下的内容是关于C#如何通过权限类和权限属性来修改安全权限的内容,应该对大伙有些用途。usingSystem;usingSystem.Security;usingSystem.Security.Permissions;usingSystem.Runtime.InteropServices;classNativeMethods{[DllImport(
实现效果: 知识运用: API函数SetWindowLong和GetWindowLong 在调用API函数的时候要添加 System.Runtime.InteropService命令空间 [DllImport("user32", EntryPoint = "GetWindowLong")] //从指 ...
文章引用自: https://www.cnblogs.com/stone_w/archive/2011/10/08/2202397.html 方式一、Asprise-OCR的使用。 Asprise-OCR下载地址: http://asprise.com/product/ocr/download.ph ...
分类:
其他好文 时间:
2018-11-23 18:27:55
阅读次数:
385
想必C#的开发者都遇到过这个问题,引用的dll都放在根目录下,随着项目的日益增大,根目录下充满了各种各样的dll,非常的不美观。 如果能够把dll按照想要的目录来存放,那么系统就美观多了,以下是我常用的程序各文件的分布: 【3rdLibs】 NLog.dll Newtonsoft.Json.dll ...
分类:
其他好文 时间:
2018-11-14 14:17:40
阅读次数:
237