程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> Windows API 設置窗口下控件Enable屬性,apienable

Windows API 設置窗口下控件Enable屬性,apienable

編輯:關於.NET

Windows API 設置窗口下控件Enable屬性,apienable


參考頁面:

http://www.yuanjiaocheng.net/webapi/create-crud-api-1-put.html

http://www.yuanjiaocheng.net/webapi/create-crud-api-1-delete.html

http://www.yuanjiaocheng.net/webapi/Consume-web-api.html

http://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-get.html

http://www.yuanjiaocheng.net/webapi/mvc-consume-webapi-post.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;
  }



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved