码迷,mamicode.com
首页 > Windows程序 > 详细

C#跨进程读取listview控件中的数据

时间:2016-10-31 00:18:44      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:ref   做了   技术   nbsp   win32   测试   end   系统   html   

http://www.cnblogs.com/Charltsing/p/slv32.html

欢迎交流:QQ564955427

读取标准的32位listview控件中的数据,网上已经有很多代码了。今天有空也做了个测试。读取TcpEye软件中的数据。

具体见程序附件。  下载(本程序可以自己修改主窗体类名和子窗体类名,抓取其他的软件数据。当然,窗体层次必须是2层,而且不能有多个同类名的子窗体,因为这只是个示例程序)

技术分享

***************************************************************

如果程序要自适应32位和64位的系统,代码还是需要做一下调整,因为两者数据格式貌似不一致

下面有个C++的定义,网上找的,留个备份

typedef struct {
UINT mask;
int iItem;
int iSubItem;
UINT state;
UINT stateMask;

int placeholder1;
LPTSTR pszText;
int placeholder11;

int cchTextMax;
int iImage;

LPARAM lParam;
int placeholder2;

#if (_WIN32_IE >= 0x0300)
int iIndent;
#endif

#if (_WIN32_WINNT >= 0x0501)
int iGroupId;

UINT cColumns;
int placeholder3;

UINT puColumns;
int placeholder4;
#endif

#if (_WIN32_WINNT >= 0x0600)
int piColFmt;
int placeholder5;

int iGroup;
int placeholder6;
#endif
} LVITEM64, *LPLVITEM64;

 

C#跨进程读取listview控件中的数据

标签:ref   做了   技术   nbsp   win32   测试   end   系统   html   

原文地址:http://www.cnblogs.com/Charltsing/p/slv32.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!