如何使用 Visual Studio2019 宏在 Visual Studio 的错误列表中 "Select all and Copy"

How to "Select all and Copy" on the Error List of Visual Studio using Visual Studio2019 Macros

我知道我们可以在错误列表上执行 Ctrl A + Ctrl C 来复制错误列表中的所有项目。我想使用 Visual Studio 宏自动执行此操作。

DTE.ExecuteCommand("Edit.SelectAll");

不适合我。它说“命令 Edit.SelectAll 不可用”。 使用 Visual Studio 宏可以做什么来执行 Ctrl A 操作?

选择错误列表 window 时,您可以使用 SendKeys 模拟 Ctrl A:

System.Windows.Forms.SendKeys.Send("^a");