zoukankan      html  css  js  c++  java
  • .NET CF 枚举设备窗口


    参见:

    http://blog.opennetcf.com/ctacke/CategoryView,category,OpenNETCF.aspx

    这个不是什么困难的事情,也有很多人都写了,主要是练练手。

    BOOL EnumWindows(WNDENUMPROC lpEnumFunc, LPARAM lParam);

    lpEnumFunc EnumWindowsProc类型的回调函数
    lParam :传递给回调函数的应用程序指定值
    返回值: 非零表示成功;零表示失败

    BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam );
    hwnd:顶层窗口句柄
    lParam:指定要传递给EnumWindows or EnumDesktopWindows的值
    返回值: 非零表示成功;零表示失败

    在程序中如下:

    P/Invoke


    代码:

    Code


     
     
     
     

    --------------------------------------------------

    李森 – listen
    E-mail:  lisencool@gmail.com

    声明:
    这里集中了在WinCEWindows Mobile开发中的一些基本常识。我很乐意和大家分享,也希望大家提出意见,并给我投稿,我会第一时间替您发表并署上您的大名!

    Announce:
    Here collects general knowledge on WinCE and Windows mobile. I 'm very glad to share them with all friends, and also hope you can share your problems and opinions and contribute articles to me to share with others. I'll publish your articles and sign your name at the first time.

      



  • 相关阅读:
    现实世界的Windows Azure:采访Definition 6首席技术官Paul Hernacki
    CloudConnect回顾,以及数据的未来
    现已可用:集成了Web Deploy的Windows Azure SDK 1.4更新版
    使用Azure SDK 1.4.1中的Web Deploy
    现实世界的SQL Azure:采访Zitec公司CEO,Alexandru Lapusan
    Microsoft和Toyota宣布战略合作伙伴关系,联手构建基于Windows Azure的下一代远程通信系统
    Delphi 2007 的重构功能
    关于类的入门的例子(6): 类引用示例
    获取所有汉字与 Unicode 的对照表
    关于类的入门例子(4): property
  • 原文地址:https://www.cnblogs.com/Lisen/p/1572651.html
Copyright © 2011-2022 走看看