请能给我一个GetWindowText的实例?C#的!

我要获取系统当前活动窗体的标题!请看好问题!!!要的是实例!... 我要获取系统当前活动窗体的标题!
请看好问题!!!要的是实例!
展开
 我来答
jdzfjfhnui
2008-12-02 · TA获得超过289个赞
知道小有建树答主
回答量:533
采纳率:0%
帮助的人:0
展开全部
The GetWindowText function copies the text of the specified window's title bar (if it has one) into a buffer. If the specified window is a control, the text of the control is copied. However, GetWindowText cannot retrieve the text of a control in another application.

int GetWindowText(
HWND hWnd, // handle to window or control
LPTSTR lpString, // text buffer
int nMaxCount // maximum number of characters to copy
);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7522791a6
2008-12-02 · TA获得超过1174个赞
知道小有建树答主
回答量:1372
采纳率:50%
帮助的人:983万
展开全部
主要代码:
char buf[MAX_PATH];
HWND hwnd = GetForegroundWindow();
GetWindowText(hwnd, buf, MAX_PATH);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
skynomadism
2008-12-02 · TA获得超过319个赞
知道小有建树答主
回答量:410
采纳率:100%
帮助的人:166万
展开全部
这需要用到系统的API
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ChikaIto
推荐于2016-01-03 · TA获得超过326个赞
知道小有建树答主
回答量:205
采纳率:0%
帮助的人:0
展开全部
using System;
using System.Text;
using System.Runtime.InteropServices;

class Program
{
[DllImport("user32.dll")]
public extern static int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);

[DllImport("user32.dll")]
public extern static IntPtr GetForegroundWindow();

static void Main(string[] args)
{
StringBuilder str = new StringBuilder(512);

GetWindowText(GetForegroundWindow(), str, str.Capacity);

Console.WriteLine(str.ToString());
Console.ReadKey();
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式