c#知道窗口句柄,如何获取窗口大小
如题,只能获得该窗口的句柄,有没有函数通过句柄来获取该窗口的大小。我查到c++中的GetWindowRect函数貌似可以,请问该c#中是否有替代函数,该如何使用,请帮帮忙...
如题,只能获得该窗口的句柄,有没有函数通过句柄来获取该窗口的大小。我查到c++中的GetWindowRect函数貌似可以,请问该c#中是否有替代函数,该如何使用,请帮帮忙,给出具体代码,谢谢
111 展开
111 展开
3个回答
展开全部
不记得有替代函数 ,你还是用 GetWindowRect吧
// 引用
using System.Runtime.InteropServices;
// 获得窗口矩形
[DllImport("user32.dll")]
public static extern int GetWindowRect(IntPtr hWnd, out RECT lpRect);
// 获得客户区矩形
[DllImport("user32.dll")]
public static extern int GetClientRect(IntPtr hWnd, out RECT lpRect);
// 矩形结构
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
int left;
int top;
int right;
int bottom;
}
// 调用
IntPtr hwnd = .....; // 窗口句柄
RECT rc;
GetWindowRect(hwnd, out rc);
GetClientRect(hwnd, out rc);
// 引用
using System.Runtime.InteropServices;
// 获得窗口矩形
[DllImport("user32.dll")]
public static extern int GetWindowRect(IntPtr hWnd, out RECT lpRect);
// 获得客户区矩形
[DllImport("user32.dll")]
public static extern int GetClientRect(IntPtr hWnd, out RECT lpRect);
// 矩形结构
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
int left;
int top;
int right;
int bottom;
}
// 调用
IntPtr hwnd = .....; // 窗口句柄
RECT rc;
GetWindowRect(hwnd, out rc);
GetClientRect(hwnd, out rc);
展开全部
Form aa = Form.FromHandle("你的句柄");
int width = aa.Width;
int height = aa.Height;
Rectangle bb= aa.RectangleToClient();
Rectangle cc = aa.RectangleToScreen();
如果想取这个窗口的其他属性,例如location.现在你有aa就这个实例了,想取什么都可以。
int width = aa.Width;
int height = aa.Height;
Rectangle bb= aa.RectangleToClient();
Rectangle cc = aa.RectangleToScreen();
如果想取这个窗口的其他属性,例如location.现在你有aa就这个实例了,想取什么都可以。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Form.Handle(或者this.Handle)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询