E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
IntPtr
使用c#检测文件正在被那个进程占用 判断文件是否被占用的两种方法
using System.Runtime.InteropServices; [DllImport("kernel32.dll")] public static extern
IntPtr
·
2015-10-31 13:25
C#
有新消息来时闪烁任务栏并且保持聊天记录内容滚动到最底端
有新消息来时闪烁任务栏并且保持聊天记录内容滚动到最底端,QQ就是这么玩滴~ /// /// /// [DllImport("user32.dll")] public static extern bool FlashWindow(
IntPtr
·
2015-10-31 13:01
记录
获取应用程序的图标,
Shell32.dll")] public static extern int ExtractIcon(
IntPtr
·
2015-10-31 13:02
应用程序
20111228_给窗体设置默认输入法
class ImeForm:System.Windows.Forms.Form { [DllImport("imm32.dll")] public static extern
IntPtr
·
2015-10-31 12:50
输入法
C#时常需要调用C++DLL
主要有如下几种转换: 将string转为
IntPtr
:
IntPtr
System.Runtime.I
·
2015-10-31 11:48
C++
DllHelper
{ private static
IntPtr
·
2015-10-31 11:20
help
关于C# Windows Forms 怎样通过用窗体类的this.Handle属性得到的
IntPtr
在别处的类中将此
IntPtr
还原为刚刚那个窗体类的实例,即(this).
关于C# Windows Forms 怎样通过用窗体类的this.Handle属性得到的
IntPtr
在别处的类中将此
IntPtr
还原为刚刚那个窗体类的实例,即(this).
·
2015-10-31 11:17
windows
winform禁用标题栏
{ if (m.Msg == 0x112) { switch ((int)m.WParam) { //禁止双击标题栏关闭窗体 case 0xF063: case 0xF093: m.WParam =
IntPtr
.Zero
·
2015-10-31 11:12
WinForm
c# 注册热键功能
//注册热键的api [DllImport("user32")] public static extern bool RegisterHotKey(
IntPtr
·
2015-10-31 11:09
C#
通过代码实现 Windows Mobile 窗体的最小化
DllImport( " coredll " )] private static extern bool ShowWindow(
IntPtr
·
2015-10-31 11:34
Windows Mobile
填充闭合区域
System.Runtime.InteropServices; [DllImport( " gdi32.dll " )] public static extern
IntPtr
·
2015-10-31 11:36
区
Graphics.DrawImage 方法
IntPtr
结构 GDI 句柄 知识收集
Graphics.DrawImage 方法 在指定的位置使用原始物理大小绘制指定的 Image。 命名空间:System.Drawing 程序集:System.Drawing(在 system.drawing.dll 中) public void DrawImage ( Image image, Point point ) 参数 image
·
2015-10-31 11:13
graphics
List connected users–similar to task manager
class Program { [DllImport("wtsapi32.dll")] static extern
IntPtr
WTSOpenServer
·
2015-10-31 11:43
connect
如何让客户端没有字体也能访问这类型的字体类型
byte[] b_Font = new byte[WindowsFormsApplication1.Properties.Resources.impact.Length];
IntPtr
·
2015-10-31 11:27
客户端
WebBrowser静音(静Flash声音及刷新出现的哒哒哒声音)
EntryPoint = "waveOutSetVolume")] public static extern int WaveOutSetVolume(
IntPtr
·
2015-10-31 11:04
WebBrowser
C# 导出数据到Excel后,销毁Excel.exe进程的方法
Process[DllImport("user32.dll", SetLastError = true)]static extern int GetWindowThreadProcessId(
IntPtr
·
2015-10-31 10:14
Excel
Showwindow 及参数
CharSet = CharSet.Auto)] public static extern int ShowWindow(
IntPtr
·
2015-10-31 10:44
window
在C#中使用API回调函数的方法
EnumChildWindows和EnumChildProc为例子: 首先要声明EnumChildProc 为一个回调函数 public delegate bool EnumChildProc(int hwnd,
IntPtr
·
2015-10-31 10:43
回调函数
C#用API如何遍历所有窗口句柄
1.首先需要声明一个委托函数用于 Win32 API - EnumWindows 的回调函数: private delegate bool WNDENUMPROC(
IntPtr
hWnd, int
·
2015-10-31 10:15
api
c# 窗口句柄有关的常见问题
例如获取窗口PictureBox控件(其他控件也可以)的句柄,
IntPtr
handle = pictureBox.Handle; 2、注意:窗口创建和窗口创建完毕即有句柄完全是两回事!!!
·
2015-10-31 10:09
常见问题
C# 实现无焦点窗体
region 无焦点窗体 [System.Runtime.InteropServices.DllImport("user32.dll")] private extern static
IntPtr
·
2015-10-31 10:38
C#
C# P/Invoke中传递数组参数
在C++的方法原型中,是一个*即指针,在C#的方法原型,相对应的可以是
IntPtr
,有些也可以直接使用[Out,In]等属性。
·
2015-10-31 10:37
C#
char*与System::String^的相互转换
#include "stdafx.h" using namespace System; //这个命名空间如果缺的话,
IntPtr
这个无法识别int main(array<System
·
2015-10-31 10:42
String
C# WPF,通过自定义协议,向其它进程发送参数
注册协议 http://www.cnblogs.com/CodingArt/p/4532465.html 与非托管代码交互操作 如何:实现回调函数 互操作封送处理
IntPtr
·
2015-10-31 10:25
WPF
c# 窗口句柄有关的常见问题
例如获取窗口PictureBox控件(其他控件也可以)的句柄,
IntPtr
handle = pictureBox.Handle; 2、注意:窗口创建和窗口创建完毕即有句柄完全是两回事!!!
·
2015-10-31 10:06
常见问题
C# WINFORM 强制让窗体获得焦点
CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)] public static extern
IntPtr
·
2015-10-31 10:26
WinForm
C#调用C++DLL
byte[] cBuf = new byte[14];
IntPtr
MachineVer = System.Runtime.InteropServices.Marshal.AllocHGlobal(
·
2015-10-31 10:15
C++
C#关闭显示器
[System.Runtime.InteropServices.DllImport("user32.dll")] public static extern
IntPtr
·
2015-10-31 10:01
C#
C# 使注册表修改后立即生效
const int WM_SETTINGCHANGE = 0x001A; const int HWND_BROADCAST = 0xffff;
IntPtr
result1; public enum
·
2015-10-31 10:08
注册表
通过标题模糊查找窗体并关闭窗口
static void CloseWindow(string title) { const int WM_CLOSE = 0x0010;
IntPtr
·
2015-10-31 09:44
查找
托管,非托管相互转换
Marshal.PtrToStructure 方法 (
IntPtr
, Type) 将数据从非托管内存块封送到新分配的指定类型的托管对象。
·
2015-10-31 09:32
转换
C# 获取窗口句柄
quot;user32", SetLastError = true)] public static extern int GetWindowText(
IntPtr
·
2015-10-31 09:54
C#
微软实现的获取进程主窗口句柄代码
public class MyProcess { private bool haveMainWindow = false; private
IntPtr
mainWindowHandle
·
2015-10-31 09:26
代码
Win32类型和.net类型的对应表
我的基本原则有如下几点:1、下面都是针对32位系统的,所以int是32位.long也是32位;2、各种句柄类的(H开头),我认为一律是System.
IntPtr
,到目前为止没发现出错;如果
·
2015-10-31 09:00
Win32
ShowWindow
CharSet = CharSet.Auto)] public static extern int ShowWindow(
IntPtr
·
2015-10-31 09:51
window
c# 高效率导出多维表头excel
User32.dll", CharSet = CharSet.Auto)] public static extern int GetWindowThreadProcessId(
IntPtr
·
2015-10-31 09:34
Excel
如何获得一个控件或窗体的句柄 (HWND)?
[DllImport("coredll.dll"] public static extern
IntPtr
GetCapture(
·
2015-10-31 09:07
控件
checking it the current os is a 32bit or 64bit version 检查操作系统是32位还是64位
if (System.
IntPtr
.Size==4) { Console.WriteLine("
·
2015-10-31 09:48
version
WPF Image控件中的ImageSource与Bitmap的互相转换
SetLastError = true)] private static extern bool DeleteObject(
IntPtr
·
2015-10-31 09:16
bitmap
c# 列举所有窗口和子窗口
private delegate bool WNDENUMPROC(
IntPtr
hWnd, int lParam); [DllImport("user32.dll"
·
2015-10-31 09:17
C#
C# 绘制基本图形单元命令汇总
其中:
IntPtr
hwnd = th
·
2015-10-31 09:49
C#
Asp.net 2.0 中.aspx请求,即如何生成响应的Html文件(原创)
对于研究过内核的人肯定以为整个.net 最终开始是IISAPIRuntime.ProcessReuqest()然后调用ISAPIRuntime.ProcessRequest(
IntPtr
ecb, int
·
2015-10-31 08:12
asp.net
listView 中,大图标时,各个图标之间间距的控制
nbsp;= CharSet.Auto)] public static extern
IntPtr
·
2015-10-31 08:01
ListView
C# 获取窗口句柄
quot;user32", SetLastError = true)] public static extern int GetWindowText(
IntPtr
·
2015-10-30 14:15
C#
C#下实现空白窗体中文输入
ImeMode.NoControl也是无法打开输入法的录字窗口.去Microsoft 开发论坛上问了一些问题.感谢周雪峰版主与Riquel_Dong 版主给的指点.用了API函数: ImmAssociateContext(
IntPtr
·
2015-10-30 14:38
C#
C#窗体内嵌外部程序(cmd.exe)的显示
[DllImport("User32.dll ", EntryPoint = "SetParent")] private static extern
IntPtr
·
2015-10-30 14:26
cmd
C# 使用TWAIN协议进行扫描仪操作
TransferPictures() 2 { 3 ArrayList pics = new ArrayList(); 4 if (srcds.Id ==
IntPtr
.Zero
·
2015-10-30 14:38
C#
c#中无法将类型“int”隐式转换为“System.
IntPtr
”
问: c#中无法将类型“int”隐式转换为“System.
IntPtr
” 这个是我引用了一个api函数时出现的问题,我在声明中把
intptr
换成了int还是不可以,这是为什么呢?要如何处理呢?
·
2015-10-30 13:57
System
C# using Sendkey function to send a key to another application
the function in your class [DllImport ("User32.dll")] static extern int SetForegroundWindow(
IntPtr
·
2015-10-30 13:28
application
C#转换为灰度图的算法
public static unsafe void GrayscaleImage(BitmapData sourceImage,
IntPtr
destBuffer)
·
2015-10-30 13:11
C#
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他