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

Windows API 设置窗口下控件Enable属性

时间:2017-01-07 15:27:09      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:dll   null   代码   core   href   .net   graph   blank   tps   

参考页面:

http://www.yuanjiaocheng.net/entity/update-entity-graph.html

http://www.yuanjiaocheng.net/ASPNET-CORE/first.html

http://www.yuanjiaocheng.net/ASPNET-CORE/asp-net-core-overview.html

http://www.yuanjiaocheng.net/ASPNET-CORE/asp.net-core-environment.html

http://www.yuanjiaocheng.net/ASPNET-CORE/newproject.html

相关接口C#互操作封送处理

    [DllImport("user32.dll")]
    unsafe public static extern bool UpdateWindow(IntPtr hWnd);//更新窗口

    [DllImport("user32.dll")]
    unsafe public static extern bool EnableWindow(IntPtr hWnd, bool bEnable);//设置Enable属性

    [DllImport("user32.dll")]
    unsafe public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);//查找窗口/控件

NOTE:
【FindWindowEx】:https://msdn.microsoft.com/en-us/library/ms633500(VS.85).aspx
【UpdateWindow】:https://msdn.microsoft.com/library/windows/desktop/dd145167
【FindWindowEx】:https://msdn.microsoft.com/en-us/library/windows/desktop/ms646291(v=vs.85).aspx

获取窗口子控件句柄代码段

  private List<IntPtr> GetAllChildrenWindowHandles(IntPtr hParent, int maxCount)
  {
      var handles = new List<IntPtr>();
      int ct = 0;
      IntPtr prevChild = IntPtr.Zero;
      IntPtr currChild = IntPtr.Zero;
      while (true && ct < maxCount)
      {
          currChild = FindWindowEx(hParent, prevChild, null, null);
          if (currChild == IntPtr.Zero) break;
          handles.Add(currChild);
          prevChild = currChild;
          ++ct;
      }
      return handles;
  }



Windows API 设置窗口下控件Enable属性

标签:dll   null   代码   core   href   .net   graph   blank   tps   

原文地址:http://www.cnblogs.com/liubibi23/p/6259301.html

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