我有一个GetMainWindowAE函数,它包含如下所示的标题信息。
/// <summary>
/// Gets the main window automation element.
/// </summary>
/// <returns></returns>
public static AutomationElement GetMainWindowAE()
{
//Return automation element using window handle of that process
return AutomationElement.FromHandle(AppContext.ActiveApplication.Process.MainWindowHandle);
}
如何使用.net?
以编程方式获取带有注释的标题中的数据答案 0 :(得分:0)
您可以使用Reflection实现此目的。方法的 MethodInfo 属性包含与方法关联的XML注释(AKA标题信息)。
有关更多信息和代码示例,请参阅this blog entry。