C#读取Window名称

时间:2014-02-18 16:19:55

标签: c# windows winapi

所以我正在开发一个应用程序,它将东西粘贴到RTF框或任何真正利用剪贴板的文本框中。

我需要能够告诉用户选择了什么窗口,以便我的应用程序可以确定是否应该将数据粘贴到那里。

有没有办法读取当前所选窗口的名称,以便我可以确定它们是否能够在其中过去?

由于

1 个答案:

答案 0 :(得分:-1)

如果您想获取表单的名称,可以执行此操作

this.Name // Returns the current forms name

//or if you want the title of the form if you initialise multiple forms

this.Title // Gets the text at the top of the form