乐筑天下

搜索
欢迎各位开发者和用户入驻本平台 尊重版权,从我做起,拒绝盗版,拒绝倒卖 签到、发布资源、邀请好友注册,可以获得银币 请注意保管好自己的密码,避免账户资金被盗
查看: 47|回复: 1

怎样获取CAD绘图区域左上角的屏幕坐标(代码篇)

[复制链接]

75

主题

306

帖子

10

银币

中流砥柱

Rank: 25

铜币
606
发表于 2016-2-4 17:54:00 | 显示全部楼层 |阅读模式
  1.   _
  2.     Public Shared Function GetWindowRect(ByVal hWnd As IntPtr, ByRef lpRect As RECT) As Boolean
  3.     End Function
  4.    
  5.      _
  6.     Public Structure RECT
  7.         Public Left As Integer
  8.         Public Top As Integer
  9.         Public Right As Integer
  10.         Public Bottom As Integer
  11.     End Structure
  12.      _
  13.     Public Shared Function GetTopWindow(ByVal hWnd As IntPtr) As IntPtr
  14.     End Function
  15.      _
  16.     Public Shared Function GetWindow(ByVal hWnd As IntPtr, ByVal uCmd As UInt32) As IntPtr
  17.     End Function    Public Shared Function GetChildWindows(ByVal ParentWindowsHandle As IntPtr) As List(Of IntPtr)
  18.         Dim rtn As New List(Of IntPtr)
  19.         Try
  20.             Dim Handle As IntPtr = GetTopWindow(ParentWindowsHandle)
  21.             While Handle  0
  22.                 rtn.Add(Handle)
  23.                 Handle = GetWindow(Handle, 2)
  24.             End While
  25.         Catch ex As Exception
  26.         End Try
  27.         Return rtn
  28.     End Function
  29.      _
  30.     Sub T1()
  31.         Dim doc As Document = Autodesk..ApplicationServices.Application.DocumentManager.MdiActiveDocument
  32.    
  33.         Dim HandleList As List(Of IntPtr) = GetChildWindows(doc.Window.Handle)
  34.         Dim Rect As New RECT() With {.Bottom = 0, .Left = 0, .Right = 0, .Top = 0}
  35.         GetWindowRect(HandleList(1), Rect) 'HandleList里有3个句柄,第2个为绘图区域的句柄
  36.         doc.Editor.WriteMessage(String.Format("绘图区域左上角屏幕坐标为:x={0},y={1},宽度为:{2},高度为:{3}", Rect.Left, Rect.Top, Rect.Right - Rect.Left, Rect.Bottom - Rect.Top))
  37.     End Sub
回复

使用道具 举报

4

主题

71

帖子

7

银币

初露锋芒

Rank: 3Rank: 3Rank: 3

铜币
87
发表于 2016-2-5 08:23:00 | 显示全部楼层
同步学习一下………………谢谢
回复

使用道具 举报

发表回复

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

  • 微信公众平台

  • 扫描访问手机版

  • 点击图片下载手机App

QQ|关于我们|小黑屋|乐筑天下 繁体中文

GMT+8, 2024-11-22 08:54 , Processed in 0.143558 second(s), 56 queries .

© 2020-2024 乐筑天下

联系客服 关注微信 帮助中心 下载APP 返回顶部 返回列表