码迷,mamicode.com
首页 >  
搜索关键字:dllimport    ( 445个结果
Reimagining App Development with the Windows Runtime
The Windows Runtime Enables Language ChoiceThe Windows Runtime Is Natural and Familiar[DllImport("avicap32.dll", EntryPoint = "capCreateCaptureWindow"...
分类:移动开发   时间:2014-08-11 20:45:32    阅读次数:237
C#窗体随意移动
//全区域移动 const int WM_NCLBUTTONDOWN = 0xA1; const int HT_CAPTION = 0x2; [DllImport("user32.dll")] static exter...
分类:移动开发   时间:2014-08-11 14:28:12    阅读次数:213
.net C# 释放内存 例子
namespace myCommon{ public class SysVar { [DllImport("kernel32.dll")] public static extern bool SetProcessWorkingSetSize(IntPtr handle, int minimumWor...
分类:Web程序   时间:2014-08-08 11:59:05    阅读次数:237
DllImport中的EntryPoint
工作中常常会使用到C#的应用来调用C++中的底层函数,此时就须要使用到DllImport,而DllImport中有一个EntryPoint(入口点),非常多文章都没有说明这个值怎样进行获取的,详细获取方式例如以下, 1、安装vc6.0; 2、使用vc6.0中带的工具dependency工具, 3、....
分类:其他好文   时间:2014-08-06 17:53:21    阅读次数:207
C# 模拟键盘按键操作
[DllImport("user32.dll")] public static extern IntPtr keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtralnfo); private ...
分类:其他好文   时间:2014-07-31 09:38:45    阅读次数:393
API删除文件
using System;using System.Runtime.InteropServices;namespace ConsoleApplication1{ class Program { [DllImport("kernel32.dll")] publi...
分类:Windows程序   时间:2014-07-28 21:21:04    阅读次数:350
c# 列举所有窗口和子窗口
private delegate bool WNDENUMPROC(IntPtr hWnd, int lParam); [DllImport("user32.dll", ExactSpelling = true)] private static extern bool E...
分类:其他好文   时间:2014-07-25 19:02:11    阅读次数:797
中控指纹认证
版本SDK5.0 [DllImport("Match.dll")] static extern bool process(string a, string b); protected void Page_Load(object sender, EventArg...
分类:其他好文   时间:2014-07-25 16:47:51    阅读次数:302
FormBorderStyle为None的时候如何拖动窗体
1 //为DllImport导出命名空间, 2 using System.Runtime.InteropServices; 3 public partial class Form1 : System.Windows.Forms.Form 4 { 5 #region FormBorderStyle为....
分类:Windows程序   时间:2014-07-22 22:55:15    阅读次数:290
Windows API中几个函数的总结
[DllImport("User32.dll", EntryPoint = "FindWindow")] public static extern IntPtr FindWindow(String className, String captionName); [Dl...
分类:Windows程序   时间:2014-07-16 18:38:03    阅读次数:298
445条   上一页 1 ... 39 40 41 42 43 ... 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!